term: remove read-only properties copied from the config

Use the config directly instead.
This commit is contained in:
Daniel Eklöf 2020-11-26 18:08:28 +01:00
parent bb0b3ab122
commit 360cc8e6de
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
4 changed files with 37 additions and 56 deletions

5
osc.c
View file

@ -8,6 +8,7 @@
#define LOG_ENABLE_DBG 0
#include "log.h"
#include "base64.h"
#include "config.h"
#include "grid.h"
#include "render.h"
#include "selection.h"
@ -663,8 +664,8 @@ osc_dispatch(struct terminal *term)
case 112:
LOG_DBG("resetting cursor color");
term->cursor_color.text = term->default_cursor_color.text;
term->cursor_color.cursor = term->default_cursor_color.cursor;
term->cursor_color.text = term->conf->cursor.color.text;
term->cursor_color.cursor = term->conf->cursor.color.cursor;
term_damage_cursor(term);
break;