Example #1
0
 def sizeHint(self):
     ans = Dialog.sizeHint(self)
     ans.setWidth(max(700, ans.width()))
     return ans
 def sizeHint(self):
     sh = Dialog.sizeHint(self)
     return QSize(max(sh.width(), 900), 600)
Example #3
0
 def sizeHint(self):
     ans = Dialog.sizeHint(self)
     ans.setWidth(ans.width() + 150)
     return ans
Example #4
0
 def sizeHint(self):
     sh = Dialog.sizeHint(self)
     return QSize(max(sh.width(), 900), 600)
Example #5
0
 def sizeHint(self):
     ans = Dialog.sizeHint(self)
     ans.setWidth(ans.width() + 150)
     return ans
Example #6
0
 def sizeHint(self):
     ans = Dialog.sizeHint(self)
     ans.setWidth(max(700, ans.width()))
     return ans