mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
term: remove unneeded blink.active field
We now use the timer FD instead; if it is -1, blinking is not active.
This commit is contained in:
parent
ac55e4067a
commit
1f650a7fdf
2 changed files with 0 additions and 4 deletions
|
|
@ -391,9 +391,7 @@ fdm_blink(struct fdm *fdm, int fd, int events, void *data)
|
|||
if (no_blinking_cells) {
|
||||
LOG_DBG("disarming blink timer");
|
||||
|
||||
term->blink.active = false;
|
||||
term->blink.state = BLINK_ON;
|
||||
|
||||
fdm_del(term->fdm, term->blink.fd);
|
||||
term->blink.fd = -1;
|
||||
} else
|
||||
|
|
@ -1469,7 +1467,6 @@ term_reset(struct terminal *term, bool hard)
|
|||
return;
|
||||
|
||||
term->flash.active = false;
|
||||
term->blink.active = false;
|
||||
term->blink.state = BLINK_ON;
|
||||
term->colors.fg = term->colors.default_fg;
|
||||
term->colors.bg = term->colors.default_bg;
|
||||
|
|
|
|||
|
|
@ -291,7 +291,6 @@ struct terminal {
|
|||
} flash;
|
||||
|
||||
struct {
|
||||
bool active;
|
||||
enum { BLINK_ON, BLINK_OFF } state;
|
||||
int fd;
|
||||
} blink;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue