Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.0, 1.0.1, and 1.0.2

bookmark: handle activate signal of 'New name' entry

Changeset 6c6d7bb75825

Parent 1554bd62e858

by Yuki KODAMA

Changes to one file · Browse files at 6c6d7bb75825 Showing diff from parent 1554bd62e858 Diff from another changeset...

 
73
74
75
76
 
 
77
78
79
 
111
112
113
114
 
115
116
117
 
73
74
75
 
76
77
78
79
80
 
112
113
114
 
115
116
117
118
@@ -73,7 +73,8 @@
    # signal handlers   self.connect('response', self.dialog_response) - self._bookmark_input.connect('activate', self.combo_activated, type) + self._bookmark_input.connect('activate', self.entry_activated, type) + entry.connect('activate', self.entry_activated, type)     # prepare to show   self._refresh() @@ -111,7 +112,7 @@
    self.run() # don't close dialog   - def combo_activated(self, entry, type): + def entry_activated(self, entry, type):   if type == TYPE_ADDREMOVE:   self.response(RESPONSE_ADD)   elif type == TYPE_RENAME: