~jaap.karssenberg/zim/pyzim-0.43-backports

« back to all changes in this revision

Viewing changes to zim/gui/widgets.py

  • Committer: Jaap Karssenberg
  • Date: 2010-01-17 18:15:48 UTC
  • Revision ID: pardus@cpan.org-20100117181548-znbf7jiswarc35gh
* Fixed issue with remove_link while some other text is selected
* Trigger Find after Search for simple queries
* Allow selecting multiple tags in Task List plugin
* Improved color highlighting in Task list
* Allow negative query in task list, like "not @waiting"

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
 
90
90
 
91
91
class SingleClickTreeView(gtk.TreeView):
 
92
        '''Treeview subclass for trees that want single-click behavior,
 
93
        but do allow multiple items to be selected.
 
94
        '''
92
95
 
93
96
        mask = gtk.gdk.SHIFT_MASK | gtk.gdk.CONTROL_MASK
94
97