From 9b254d49b9acbd39dc6c018cde5df93c2a8338fc Mon Sep 17 00:00:00 2001 From: Jorenar Date: Tue, 29 Jul 2025 01:47:06 +0200 Subject: [PATCH] Fix color of evencolumn when editing events in ikhal Fixes #1420 --- CHANGELOG.rst | 1 + khal/ui/__init__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 318fc8841..a5a1a19b1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -13,6 +13,7 @@ unreleased * CHANGE the ``pkg_resources`` library is no longer required. * FIX the location of caching database to ``$XDG_CACHE_HOME`` +* FIX color of eventcolumn when editing events in ikhal 0.13.0 ====== diff --git a/khal/ui/__init__.py b/khal/ui/__init__.py index ce1964f0c..55a9a53aa 100644 --- a/khal/ui/__init__.py +++ b/khal/ui/__init__.py @@ -780,7 +780,7 @@ def update_colors(new_start: dt.date, new_end: dt.date, everything: bool=False): ContainerWidget = linebox[self.pane._conf['view']['frame']] new_pane = urwid.Columns([ ('weight', 2, CAttrMap(ContainerWidget(editor), 'editor', 'editor focus')), - ('weight', 1, CAttrMap(ContainerWidget(self.dlistbox), 'reveal focus')), + ('weight', 1, CAttrMap(ContainerWidget(self.dlistbox), 'eventcolumn')), ], dividechars=0, focus_column=0) new_pane.title = editor.title