Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

hgignore: invalidate repository to pick changes

Changeset 35ceab86e8f5

Parent fae84c6907e2

by Yuki KODAMA

Changes to one file · Browse files at 35ceab86e8f5 Showing diff from parent fae84c6907e2 Diff from another changeset...

 
232
233
234
 
235
236
237
 
275
276
277
 
278
279
280
 
322
323
324
 
325
326
327
 
350
351
352
 
353
354
355
 
232
233
234
235
236
237
238
 
276
277
278
279
280
281
282
 
324
325
326
327
328
329
330
 
353
354
355
356
357
358
359
@@ -232,6 +232,7 @@
  gobject.timeout_add(50, self.unknown_wait, thread, q)     def unknown_thread(self, root, q): + hglib.invalidaterepo(self.repo)   matcher = match.always(self.repo.root, self.repo.root)   status = self.repo.status(node1=self.repo.dirstate.parents()[0],   node2=None, match=matcher, ignored=False, @@ -275,6 +276,7 @@
  gobject.timeout_add(50, self.search_wait, thread, q)     def search_thread(self, root, q, tgts): + hglib.invalidaterepo(self.repo)   srcs = []   audit_path = util.path_auditor(self.repo.root)   m = cmdutil.match(self.repo) @@ -322,6 +324,7 @@
    def accept_match(self):   'User pressed "accept match" button' + hglib.invalidaterepo(self.repo)   canmodel, upaths = self.cantree.get_selection().get_selected_rows()   for path in upaths:   row = canmodel[path] @@ -350,6 +353,7 @@
    def show_diff(self, selection):   'User selected a row in the candidate tree' + hglib.invalidaterepo(self.repo)   model, cpaths = selection.get_selected_rows()   sensitive = cpaths and True or False   self.acceptbtn.set_sensitive(sensitive)