From b833451018cf1e76e0a8dff53dfa04ccfc6e4c58 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 21 Oct 2016 06:27:22 +0530 Subject: [PATCH] ... --- kitty/screen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kitty/screen.py b/kitty/screen.py index 42bbd777f..f89da4bf6 100644 --- a/kitty/screen.py +++ b/kitty/screen.py @@ -888,9 +888,9 @@ class Screen(QObject): elif not attr: c.reset_display_attrs() elif attr in g.FG_AIXTERM: - c.fg = g.FG_AIXTERM[attr] + c.fg = (attr << 8) | 1 elif attr in g.BG_AIXTERM: - c.bg = g.BG_AIXTERM[attr] + c.bg = (attr << 8) | 1 elif attr in (g.FG_256, g.BG_256): key = "fg" if attr == g.FG_256 else "bg" n = attrs.pop()