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:
parent
08c63b2e45
commit
8740b50c2b
@ -1,3 +1,6 @@
|
||||
2007-10-07 Gary Burton <gary.burton@zen.co.uk>
|
||||
* src/PageView.py: sort column retains filter value, issue #507
|
||||
|
||||
2007-10-07 Don Allingham <don@gramps-project.org>
|
||||
* src/gen/db/GrampsDbUtils/_Backup.py: use gen.db
|
||||
|
||||
|
@ -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())
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user