summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Geier <geier@lostpackets.de>2024-03-03 22:34:42 +0100
committerChristian Geier <geier@lostpackets.de>2024-03-03 22:34:42 +0100
commit058405a00e0cc3de1279299115616b72fea1ced2 (patch)
tree850d7ad83a93a4da06d9b5d927438f785352325e
parent0bfe2694cc3c98ad909b7559e04fb787f111c9b4 (diff)
change valign to topfix/1340
According to urwid's documentation `('relative', 50)` should be a valid value, not sure why it raises an exception.
-rw-r--r--khal/ui/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/khal/ui/__init__.py b/khal/ui/__init__.py
index bc4b585f..776b0736 100644
--- a/khal/ui/__init__.py
+++ b/khal/ui/__init__.py
@@ -793,7 +793,7 @@ class EventColumn(urwid.WidgetWrap):
bottom_w = self.pane,
align = 'center',
width = ('relative', 50),
- valign = ('relative', 50),
+ valign = 'top',
height = 10,
)
self.pane.window.open(overlay)