From 47851ebb1bb1b56ce204a300204f06e96197e3d1 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 3 Jun 2017 08:51:00 +0530 Subject: [PATCH] Fix conversion of type 2 terminal colors not working because of missing break --- kitty/colors.c | 1 + 1 file changed, 1 insertion(+) diff --git a/kitty/colors.c b/kitty/colors.c index 7aeab6f50..73e06445c 100644 --- a/kitty/colors.c +++ b/kitty/colors.c @@ -99,6 +99,7 @@ as_color(ColorProfile *self, PyObject *val) { break; case 2: col = entry >> 8; + break; default: ans = Py_None; Py_INCREF(Py_None); }