Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.6, 0.7, and 0.7.1

thgconfig: Add keyboard shortcuts to "paths" page

Add shortcuts for Add (Alt-A), Remove (Alt-R), Test (Alt-T)

Changeset 38bd21f49518

Parent 3f550f36b564

by Peer Sommerlund

Changes to one file · Browse files at 38bd21f49518 Showing diff from parent 3f550f36b564 Diff from another changeset...

 
164
165
166
167
 
 
168
169
170
171
 
 
172
173
174
175
 
 
176
177
178
 
164
165
166
 
167
168
169
170
171
 
172
173
174
175
176
 
177
178
179
180
181
@@ -164,15 +164,18 @@
  vbox.add(scrolledwindow)     buttonbox = gtk.HBox() - self.addButton = gtk.Button("Add") + self.addButton = gtk.Button("_Add") + self.addButton.set_use_underline(True)   self.addButton.connect('clicked', self._add_path)   buttonbox.pack_start(self.addButton)   - self._delpathbutton = gtk.Button("Remove") + self._delpathbutton = gtk.Button("_Remove") + self._delpathbutton.set_use_underline(True)   self._delpathbutton.connect('clicked', self._remove_path)   buttonbox.pack_start(self._delpathbutton)   - self._testpathbutton = gtk.Button("Test") + self._testpathbutton = gtk.Button("_Test") + self._testpathbutton.set_use_underline(True)   self._testpathbutton.connect('clicked', self._test_path)   buttonbox.pack_start(self._testpathbutton)