2007-10-07 Gary Burton <gary.burton@zen.co.uk>

* src/PageView.py: sort column retains filter value, issue #507


svn: r9095
This commit is contained in:
Benny Malengier
2007-10-07 19:59:01 +00:00
parent 08c63b2e45
commit 8740b50c2b
2 changed files with 4 additions and 3 deletions

View File

@@ -56,8 +56,6 @@ import const
NAVIGATION_NONE = -1
NAVIGATION_PERSON = 0
EMPTY_SEARCH = (0, '', False)
#------------------------------------------------------------------------------
#
# PageView
@@ -777,7 +775,7 @@ class ListView(BookMarkView):
handle = self.first_selected()
if Config.get(Config.FILTER):
search = EMPTY_SEARCH
search = (True, self.generic_filter)
else:
search = (False, self.search_bar.get_value())