From 90e803c542504f4e42661ef540cb56de5b189ab1 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 21 Oct 2016 13:26:42 +0530 Subject: [PATCH] Reset should also restore the fg/bg colors to default --- kitty/screen.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kitty/screen.py b/kitty/screen.py index 0b8e88a2c..fa1aa2ab2 100644 --- a/kitty/screen.py +++ b/kitty/screen.py @@ -134,6 +134,8 @@ def reset(self, notify=True): self.cursor = Cursor(0, 0) self.cursor_changed(self.cursor) self.cursor_position() + self.change_default_color.emit('fg', None) + self.change_default_color.emit('bg', None) if notify: self.update_screen()