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

status: file toggle state transferred to chunk toggle state

Changeset 698370c24a1f

Parent f0c393fa9a4f

by Steve Borho

Changes to one file · Browse files at 698370c24a1f Showing diff from parent f0c393fa9a4f Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​status.py Stacked
 
524
525
526
 
 
 
 
 
527
528
529
 
524
525
526
527
528
529
530
531
532
533
534
@@ -524,6 +524,11 @@
    def _select_toggle(self, cellrenderer, path):   self.model[path][0] = not self.model[path][0] + # Update chunk toggle state to match file toggle state + file = self.model[path][2] + if file in self._filechunks: + for n in self._filechunks[file][1:]: + self.diff_model[n][DM_REJECTED] = not self.model[path][0]   self._update_check_count()   return True