mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
render: rename render_{enable,disable}_refresh()
This commit is contained in:
parent
cb8a0260f3
commit
6e474e77e5
3 changed files with 9 additions and 7 deletions
5
dcs.c
5
dcs.c
|
|
@ -12,7 +12,7 @@ bsu(struct terminal *term)
|
|||
LOG_DBG("BSU - Begin Synchronized Update (params: %.*s)",
|
||||
(int)term->vt.dcs.idx, term->vt.dcs.data);
|
||||
|
||||
render_disable_refresh(term);
|
||||
render_enable_application_synchronized_updates(term);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
@ -20,7 +20,8 @@ esu(struct terminal *term)
|
|||
{
|
||||
LOG_DBG("ESU - Begin Synchronized Update (params: %.*s)",
|
||||
(int)term->vt.dcs.idx, term->vt.dcs.data);
|
||||
render_enable_refresh(term);
|
||||
|
||||
render_disable_application_synchronized_updates(term);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue