summaryrefslogtreecommitdiff
path: root/urwid/widget.py
diff options
context:
space:
mode:
authorIan Ward <none@none>2009-04-06 09:40:56 -0400
committerIan Ward <none@none>2009-04-06 09:40:56 -0400
commitf628c04b3f51059e792a84b25a6bac38a936cbf7 (patch)
tree3c8813eceaf4464fe5514e54820bb9d93697f59d /urwid/widget.py
parentc0ed9af95c98c63735721918c612c22326846216 (diff)
downloadurwid-f628c04b3f51059e792a84b25a6bac38a936cbf7.tar.gz
add "defines" for filler alignment modes
Diffstat (limited to 'urwid/widget.py')
-rw-r--r--urwid/widget.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/urwid/widget.py b/urwid/widget.py
index 1ac9ad9..51f3748 100644
--- a/urwid/widget.py
+++ b/urwid/widget.py
@@ -46,6 +46,11 @@ LEFT = 'left'
RIGHT = 'right'
CENTER = 'center'
+# Filler alignment modes
+TOP = 'top'
+MIDDLE = 'middle'
+BOTTOM = 'bottom'
+
# Text wrapping modes
SPACE = 'space'
ANY = 'any'