From ab26bbb213e55dc6863e09a566e22bec613591d5 Mon Sep 17 00:00:00 2001 From: Etoh Date: Sun, 15 Oct 2017 14:14:55 +0100 Subject: [PATCH] Align GuiConfig playericon right --- syncplay/ui/GuiConfiguration.py | 1 + 1 file changed, 1 insertion(+) diff --git a/syncplay/ui/GuiConfiguration.py b/syncplay/ui/GuiConfiguration.py index d3a1c8d..41e4f4c 100644 --- a/syncplay/ui/GuiConfiguration.py +++ b/syncplay/ui/GuiConfiguration.py @@ -585,6 +585,7 @@ class ConfigDialog(QtGui.QDialog): self.executableiconImage = QtGui.QImage() self.executableiconLabel = QLabel(self) self.executableiconLabel.setMinimumWidth(16) + self.executableiconLabel.setAlignment(Qt.AlignRight | Qt.AlignVCenter) self.executablepathCombobox = QtGui.QComboBox(self) self.executablepathCombobox.setEditable(True) self.executablepathCombobox.currentIndexChanged.connect(self.updateExecutableIcon)