mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
render: remove render_refresh_margins()
This commit is contained in:
parent
5924892bbe
commit
af2873987f
3 changed files with 0 additions and 9 deletions
6
render.c
6
render.c
|
|
@ -2385,12 +2385,6 @@ render_refresh(struct terminal *term)
|
|||
term->render.refresh.grid = true;
|
||||
}
|
||||
|
||||
void
|
||||
render_refresh_margins(struct terminal *term)
|
||||
{
|
||||
term->render.refresh.margins = true;
|
||||
}
|
||||
|
||||
void
|
||||
render_refresh_csd(struct terminal *term)
|
||||
{
|
||||
|
|
|
|||
1
render.h
1
render.h
|
|
@ -13,7 +13,6 @@ bool render_resize(struct terminal *term, int width, int height);
|
|||
bool render_resize_force(struct terminal *term, int width, int height);
|
||||
|
||||
void render_refresh(struct terminal *term);
|
||||
void render_refresh_margins(struct terminal *term);
|
||||
void render_refresh_csd(struct terminal *term);
|
||||
void render_refresh_search(struct terminal *term);
|
||||
void render_refresh_title(struct terminal *term);
|
||||
|
|
|
|||
|
|
@ -373,7 +373,6 @@ struct terminal {
|
|||
/* Scheduled for rendering, as soon-as-possible */
|
||||
struct {
|
||||
bool grid;
|
||||
bool margins;
|
||||
bool csd;
|
||||
bool search;
|
||||
bool title;
|
||||
|
|
@ -382,7 +381,6 @@ struct terminal {
|
|||
/* Scheduled for rendering, in the next frame callback */
|
||||
struct {
|
||||
bool grid;
|
||||
bool margins;
|
||||
bool csd;
|
||||
bool search;
|
||||
bool title;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue