From 12be438dea128a8e5659c3821e65172172c2668b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 5 Jul 2018 12:30:11 +0530 Subject: [PATCH] ... --- kitty/borders.py | 1 + 1 file changed, 1 insertion(+) diff --git a/kitty/borders.py b/kitty/borders.py index 08fa239bd..5a61a2f21 100644 --- a/kitty/borders.py +++ b/kitty/borders.py @@ -16,6 +16,7 @@ except Exception: class BorderColor(IntFlag): + # See the border vertex shader for how these flags become actual colors default_bg, active, inactive, window_bg, bell = ((1 << i) for i in range(5))