Skip to content

Commit aa149cd

Browse files
committed
Fix color of evencolumn when editing events in ikhal
Fixes #1420
1 parent 0e76dbc commit aa149cd

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ unreleased
1313

1414
* CHANGE the ``pkg_resources`` library is no longer required.
1515
* FIX the location of caching database to ``$XDG_CACHE_HOME``
16+
* FIX color of eventcolumn when editing events in ikhal
1617

1718
0.13.0
1819
======

khal/ui/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -781,7 +781,7 @@ def update_colors(new_start: dt.date, new_end: dt.date, everything: bool=False):
781781
ContainerWidget = linebox[self.pane._conf['view']['frame']]
782782
new_pane = urwid.Columns([
783783
('weight', 2, CAttrMap(ContainerWidget(editor), 'editor', 'editor focus')),
784-
('weight', 1, CAttrMap(ContainerWidget(self.dlistbox), 'reveal focus')),
784+
('weight', 1, CAttrMap(ContainerWidget(self.dlistbox), 'eventcolumn')),
785785
], dividechars=0, focus_column=0)
786786
new_pane.title = editor.title
787787

0 commit comments

Comments
 (0)