Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 2.0, 2.0.1, and 2.0.2

stable repomodel: return valid Qt.ItemFlags() at all times

Changeset 9f0afb1d2669

Parent 17b20a84aa4e

by Steve Borho

Changes to one file · Browse files at 9f0afb1d2669 Showing diff from parent 17b20a84aa4e Diff from another changeset...

 
441
442
443
444
 
445
446
447
 
441
442
443
 
444
445
446
447
@@ -441,7 +441,7 @@
    def flags(self, index):   if not index.isValid(): - return 0 + return Qt.ItemFlags(0)   if not self.revset:   return Qt.ItemIsSelectable | Qt.ItemIsEnabled