Process Qt events once more, to prevent weird size issues before adjusting size

This commit is contained in:
Micah Lee 2018-09-28 16:06:14 -07:00
parent 35065106ef
commit 08ac4137c7
No known key found for this signature in database
GPG key ID: 403C2657CD994F73
2 changed files with 1 additions and 1 deletions

View file

@ -350,4 +350,5 @@ class Mode(QtWidgets.QWidget):
Always resize the window after showing this Mode widget.
"""
super(Mode, self).show()
self.qtapp.processEvents()
self.resize_window()