Skip to content

Commit ec164f5

Browse files
committed
Fix color of evencolumn when editing events in ikhal
Fixes #1420
1 parent 37d9c64 commit ec164f5

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

AUTHORS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,4 @@ Mattori Birnbaum - me [at] mattori [dot] com - https://mattori.com
5858
Pi R
5959
Alnoman Kamil - noman [at] kamil [dot] gr - https://kamil.gr
6060
Leonardo Taccari - iamleot [at] gmail [dot] com
61+
Jorenar - dev [at] jorenar [dot] com - https://jorenar.com

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ may want to subscribe to `GitHub's tag feed
1212
unreleased
1313

1414
* CHANGE the ``pkg_resources`` library is no longer required.
15+
* FIX color of eventcolumn when editing events in ikhal
1516

1617
0.13.0
1718
======

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)