Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
======
Expand Down
2 changes: 1 addition & 1 deletion khal/ui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down