Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.4rc1, 0.4rc2, and 0.4rc3

hggtk/clone: show end of src and dest paths on startup

Changeset cdbb0252bbd9

Parent e5d8410bce10

by TK Soh

Changes to one file · Browse files at cdbb0252bbd9 Showing diff from parent e5d8410bce10 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​clone.py Stacked
 
88
89
90
 
91
92
93
 
119
120
121
 
 
122
123
124
 
88
89
90
91
92
93
94
 
120
121
122
123
124
125
126
127
@@ -88,6 +88,7 @@
  self._srclistbox = gtk.ComboBoxEntry(self._srclist, 0)   self._src_input = self._srclistbox.get_child()   self._src_input.set_text(self._src_path) + self._src_input.set_position(-1)     # replace the drop-down widget so we can modify it's properties   self._srclistbox.clear() @@ -119,6 +120,8 @@
  self._destlistbox = gtk.ComboBoxEntry(self._destlist, 0)   self._dest_input = self._destlistbox.get_child()   self._dest_input.set_text(self._dest_path) + self._dest_input.set_position(-1) +   # replace the drop-down widget so we can modify it's properties   self._destlistbox.clear()   cell = gtk.CellRendererText()