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 set default row until all rows are loaded

Changeset b11c51990c3a

Parent 853cffb0b324

by Steve Borho

Changes to one file · Browse files at b11c51990c3a Showing diff from parent 853cffb0b324 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​synch.py Stacked
 
134
135
136
 
 
 
 
 
137
138
139
 
141
142
143
144
145
146
147
148
149
150
151
 
134
135
136
137
138
139
140
141
142
143
144
 
146
147
148
 
 
 
 
 
149
150
151
@@ -134,6 +134,11 @@
  defpushrow = row   self.pathlist.append([path])   + sympaths = [x[1] for x in self.paths] + for p in self._recent_src: + if p not in sympaths: + self.pathlist.append([p]) +   if repos:   self._pathtext.set_text(repos[0])   elif defpushrow is not None and pushmode: @@ -141,11 +146,6 @@
  elif defrow is not None:   self._pathbox.set_active(defrow)   - sympaths = [x[1] for x in self.paths] - for p in self._recent_src: - if p not in sympaths: - self.pathlist.append([p]) -   # create checkbox to disable proxy   self._use_proxy = gtk.CheckButton("use proxy server")   if ui.ui().config('http_proxy', 'host', ''):