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

stable bookmark: use a cmdui.Runner without a log widget - only used by repowidget

Changeset f50560f2ee7a

Parent 2e85ede9dbde

by Steve Borho

Changes to one file · Browse files at f50560f2ee7a Showing diff from parent 2e85ede9dbde Diff from another changeset...

 
109
110
111
112
 
113
114
115
116
117
118
119
120
 
109
110
111
 
112
113
114
115
116
 
117
118
119
@@ -109,12 +109,11 @@
  self.setWindowTitle(_('Bookmark - %s') % self.repo.displayname)   self.setWindowIcon(qtlib.geticon('hg-bookmarks'))   - self.cmd = cmdui.Widget(True, self) + self.cmd = cmdui.Runner(False, self)   self.cmd.output.connect(self.output)   self.cmd.makeLogVisible.connect(self.makeLogVisible)   self.cmd.progress.connect(self.progress)   self.cmd.commandFinished.connect(self.commandFinished) - box.addWidget(self.cmd)     # prepare to show   self.clear_status()