From 093df74ad8e4aca2d095f6b64eafa37898a68f60 Mon Sep 17 00:00:00 2001 From: Et0h Date: Sat, 19 Jul 2014 13:34:11 +0100 Subject: [PATCH] Hopefully fix Linux success/error msg size bug --- syncplay/ui/GuiConfiguration.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/syncplay/ui/GuiConfiguration.py b/syncplay/ui/GuiConfiguration.py index eaa776f..df76a25 100644 --- a/syncplay/ui/GuiConfiguration.py +++ b/syncplay/ui/GuiConfiguration.py @@ -781,4 +781,5 @@ 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)) \ No newline at end of file + self.processWidget(self, lambda w: self.connectChildren(w)) + self.setFixedWidth(self.minimumSizeHint().width()) \ No newline at end of file