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

synch: do not select separator line

When the repo had no paths configured, it was pushing the separator into
the combo box text. This change leaves the text box empty.

Changeset 9764876f1444

Parent a1255bffcc75

by Steve Borho

Changes to one file · Browse files at 9764876f1444 Showing diff from parent a1255bffcc75 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​synch.py Stacked
 
136
137
138
139
 
 
140
141
142
 
136
137
138
 
139
140
141
142
143
@@ -136,7 +136,8 @@
  elif defrow is not None:   self._pathbox.set_active(defrow)   else: - self._pathbox.set_active(0) + if len(self.pathlist) > 1 and not self.pathlist[3]: + self._pathbox.set_active(0)     # support dropping of repos or bundle files   self.drag_dest_set(gtk.DEST_DEFAULT_ALL,