Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

workbench: fix enabling diff mode action

when there was no initial repo

Changeset 27c8b424b27b

Parent cd5fd0b50837

by Adrian Buehlmann

Changes to one file · Browse files at 27c8b424b27b Showing diff from parent cd5fd0b50837 Diff from another changeset...

 
299
300
301
302
303
304
 
305
306
307
 
299
300
301
 
302
303
304
305
306
307
@@ -299,9 +299,9 @@
  tags = w.repo.tags().keys()   w.switchedTo()   else: - self.actionDiffMode.setEnabled(False)   self.stackedWidget.setCurrentWidget(self.dummywidget)   + self.actionDiffMode.setEnabled(w is not None)   self.actionDiffMode.setChecked(mode == 'diff')   self.actionAnnMode.setChecked(ann)