mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-11 05:33:55 -04:00
term: remove read-only properties copied from the config
Use the config directly instead.
This commit is contained in:
parent
bb0b3ab122
commit
360cc8e6de
4 changed files with 37 additions and 56 deletions
3
csi.c
3
csi.c
|
|
@ -15,6 +15,7 @@
|
|||
#define LOG_MODULE "csi"
|
||||
#define LOG_ENABLE_DBG 0
|
||||
#include "log.h"
|
||||
#include "config.h"
|
||||
#include "grid.h"
|
||||
#include "selection.h"
|
||||
#include "sixel.h"
|
||||
|
|
@ -1513,11 +1514,11 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
int param = vt_param_get(term, 0, 0);
|
||||
switch (param) {
|
||||
case 0: /* blinking block, but we use it to reset to configured default */
|
||||
term->cursor_style = term->default_cursor_style;
|
||||
if (term->default_cursor_blink)
|
||||
term_cursor_blink_enable(term);
|
||||
else
|
||||
term_cursor_blink_disable(term);
|
||||
term->cursor_style = term->conf->cursor.style;
|
||||
break;
|
||||
|
||||
case 1: /* blinking block */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue