예제 #1
0
 def find_event(self, event=None):
     """Perform find operation."""
     if not self.tag_ranges("sel"):
         found = self.tag_ranges("found")
         if found:
             self.tag_add("sel", found[0], found[1])
         else:
             self.tag_add("sel", "1.0", "1.0+1c")
     SearchDialog.find(self)
     return "break"
예제 #2
0
 def find_event(self, event=None):
     """Perform find operation."""
     if not self.tag_ranges('sel'):
         found = self.tag_ranges('found')
         if found:
             self.tag_add('sel', found[0], found[1])
         else:
             self.tag_add('sel', '1.0', '1.0+1c')
     SearchDialog.find(self)
     return 'break'
예제 #3
0
파일: gui.py 프로젝트: Zeffar/Elobot
 def find_event(self, event=None):
     """Perform find operation."""
     if not self.tag_ranges("sel"):
         found = self.tag_ranges("found")
         if found:
             self.tag_add("sel", found[0], found[1])
         else:
             self.tag_add("sel", "1.0", "1.0+1c")
     SearchDialog.find(self)
     return "break"