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

Merge with stable

Changeset ea00c5737021

Parents ab4d7595b497

Parents 4555e191a783

by Steve Borho

Changes to one file · Browse files at ea00c5737021 Showing diff from parent ab4d7595b497 4555e191a783 Diff from another changeset...

Change 1 of 2 Show Entire File hggtk/​status.py Stacked
 
319
320
321
322
 
 
323
324
325
 
540
541
542
 
543
544
545
 
319
320
321
 
322
323
324
325
326
 
541
542
543
544
545
546
547
@@ -319,7 +319,8 @@
  difftree.get_selection().set_mode(gtk.SELECTION_MULTIPLE)   difftree.set_headers_visible(False)   difftree.set_enable_search(False) - difftree.set_property('enable-grid-lines', True) + if getattr(difftree, 'enable-grid-lines', None) is not None: + difftree.set_property('enable-grid-lines', True)   difftree.connect('row-activated', self.diff_tree_row_act)     cell = gtk.CellRendererText() @@ -540,6 +541,7 @@
  # List of the currently checked and selected files to pass on to   # the new data   model, tpaths = selection.get_selected_rows() + model = self.filemodel   reselect = [model[path][FM_PATH] for path in tpaths]   waschecked = {}   for row in model: