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

update: enable 'Always show command log' option

Changeset f26a3df7aec4

Parent 73249ab9a18b

by Yuki KODAMA

Changes to one file · Browse files at f26a3df7aec4 Showing diff from parent 73249ab9a18b Diff from another changeset...

 
164
165
166
 
 
167
168
169
170
171
172
 
173
174
175
 
164
165
166
167
168
169
170
171
172
173
 
174
175
176
177
@@ -164,12 +164,14 @@
    def command_started(self):   self.cmd.setShown(True) + if self.showlog_chk.isVisible(): + self.cmd.show_output(True)   self.update_btn.setHidden(True)   self.close_btn.setHidden(True)   self.cancel_btn.setShown(True)     def command_finished(self, wrapper): - if wrapper.data is not 0: + if wrapper.data is not 0 or self.cmd.is_show_output():   self.cmd.show_output(True)   self.close_btn.setShown(True)   self.cancel_btn.setHidden(True)