diff --git a/syncplay/ui/GuiConfiguration.py b/syncplay/ui/GuiConfiguration.py index df76a25..df00c5d 100644 --- a/syncplay/ui/GuiConfiguration.py +++ b/syncplay/ui/GuiConfiguration.py @@ -702,6 +702,7 @@ class ConfigDialog(QtGui.QDialog): def showEvent(self, *args, **kwargs): self.ensureTabListIsVisible() + self.setFixedWidth(self.minimumSizeHint().width()) def clearGUIData(self, leaveMore=False): settings = QSettings("Syncplay", "PlayerList") @@ -781,5 +782,4 @@ class ConfigDialog(QtGui.QDialog): if constants.SHOW_TOOLTIPS: self.processWidget(self, lambda w: self.loadTooltips(w)) self.processWidget(self, lambda w: self.loadValues(w)) - self.processWidget(self, lambda w: self.connectChildren(w)) - self.setFixedWidth(self.minimumSizeHint().width()) \ No newline at end of file + self.processWidget(self, lambda w: self.connectChildren(w)) \ No newline at end of file