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

stable cmdui: workaround for Runner not to eat GUI events of parent left-top corner

This fixes queueCombo of MQWidget to be clickable.
Tested on Windows xp and Linux/KDE.

Changeset 3680c03bab6e

Parent 8f2801e8cd75

by Yuya Nishihara

Changes to one file · Browse files at 3680c03bab6e Showing diff from parent 8f2801e8cd75 Diff from another changeset...

 
806
807
808
 
 
 
 
 
 
809
810
811
 
806
807
808
809
810
811
812
813
814
815
816
817
@@ -806,6 +806,12 @@
  def __init__(self, title=_('TortoiseHg'), useInternal=True, parent=None):   super(Runner, self).__init__(parent)   + # XXX: workaround not to eat mouse-click around left-top corner of + # the parent widget. Runner shouldn't be a QWidget, but for now + # it's a QWidget in order to become a parent of self.core.thread + # and self.dlg. + self.resize(0, 0) +   self.internallog = useInternal   self.title = title