Skip to content

Commit 9b254d4

Browse files
committed
Fix color of evencolumn when editing events in ikhal
Fixes #1420
1 parent e80134f commit 9b254d4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

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
@@ -780,7 +780,7 @@ def update_colors(new_start: dt.date, new_end: dt.date, everything: bool=False):
780780
ContainerWidget = linebox[self.pane._conf['view']['frame']]
781781
new_pane = urwid.Columns([
782782
('weight', 2, CAttrMap(ContainerWidget(editor), 'editor', 'editor focus')),
783-
('weight', 1, CAttrMap(ContainerWidget(self.dlistbox), 'reveal focus')),
783+
('weight', 1, CAttrMap(ContainerWidget(self.dlistbox), 'eventcolumn')),
784784
], dividechars=0, focus_column=0)
785785
new_pane.title = editor.title
786786

0 commit comments

Comments
 (0)