~bkidwell/zim/pyzim-win-installer

« back to all changes in this revision

Viewing changes to zim/gui/searchdialog.py

  • Committer: Jaap Karssenberg
  • Date: 2011-05-10 20:58:36 UTC
  • mfrom: (391.2.7 quick_fixes)
  • Revision ID: pardus@cpan.org-20110510205836-monwocmkfylr7ms2
Merging 3 fixes:
* Remember position of main window and dialogs (within one instance)
* Make search hand over partial searches correctly to find
* When copying attachments keep the modification time etc.

Show diffs side-by-side

added added

removed removed

Lines of Context:
116
116
                # Popup find dialog with same query
117
117
                if self.query and self.query.simple_match:
118
118
                        string = self.query.simple_match
119
 
                        string.strip('*') # support partial matches
 
119
                        string = string.strip('*') # support partial matches
120
120
                        self.ui.mainwindow.pageview.show_find(string, highlight=True)