Commit 607a3571 authored by Bram Schoenmakers's avatar Bram Schoenmakers

Put filter field on top of the view definition

Applying a filter is a primary thing to do for defining a column, therefore put it on top.
parent 9fae5941
......@@ -31,9 +31,9 @@ class ViewWidget(urwid.LineBox):
self.allradio = urwid.RadioButton(group, "Show all todo items")
self.pile = urwid.Pile([
self.filteredit,
self.titleedit,
self.sortedit,
self.filteredit,
self.relevantradio,
self.allradio,
urwid.Button("Save", lambda _: urwid.emit_signal(self, 'save')),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment