diff options
| author | Randy Palamar <randy@rnpnr.xyz> | 2025-01-04 18:03:48 -0700 |
|---|---|---|
| committer | Randy Palamar <randy@rnpnr.xyz> | 2025-01-04 21:46:07 -0700 |
| commit | 75892aad7939b40354be7ea71bd55c651956b27c (patch) | |
| tree | 261d4f509971efd3958a47ecba085770c9269038 /ui-terminal-vt100.c | |
| parent | dedb8b7ebf103b09c78e5f088f3cc7038b5adc5c (diff) | |
| download | vis-75892aad7939b40354be7ea71bd55c651956b27c.tar.gz vis-75892aad7939b40354be7ea71bd55c651956b27c.tar.xz | |
curses ui: fix default color detection
closes: #1209
Diffstat (limited to 'ui-terminal-vt100.c')
| -rw-r--r-- | ui-terminal-vt100.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/ui-terminal-vt100.c b/ui-terminal-vt100.c index 92e23eb..3c63c11 100644 --- a/ui-terminal-vt100.c +++ b/ui-terminal-vt100.c @@ -211,11 +211,3 @@ static void ui_term_backend_free(Ui *tui) { static bool is_default_color(CellColor c) { return c.index == ((CellColor) CELL_COLOR_DEFAULT).index; } - -static bool is_default_fg(CellColor c) { - return is_default_color(c); -} - -static bool is_default_bg(CellColor c) { - return is_default_color(c); -} |
