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

cmdui: add method to get visibility of output area

Changeset 73249ab9a18b

Parent 961221f0f4f3

by Yuki KODAMA

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

 
233
234
235
 
 
 
236
237
238
 
233
234
235
236
237
238
239
240
241
@@ -233,6 +233,9 @@
  def show_output(self, visible):   self.core.output_text.setShown(visible)   + def is_show_output(self): + return self.core.output_text.isVisible() +  class Dialog(QDialog):   """A dialog for running random Mercurial command"""