From 1ad2973c19369cb1cc0580f36516f02cba2ecb05 Mon Sep 17 00:00:00 2001 From: Et0h Date: Wed, 18 Jun 2014 12:02:55 +0100 Subject: [PATCH] Use columns for 'more settings' checkboxes --- syncplay/ui/GuiConfiguration.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/syncplay/ui/GuiConfiguration.py b/syncplay/ui/GuiConfiguration.py index 1140dfa..1b8e7ed 100644 --- a/syncplay/ui/GuiConfiguration.py +++ b/syncplay/ui/GuiConfiguration.py @@ -454,12 +454,12 @@ class ConfigDialog(QtGui.QDialog): self.moreSettingsLayout.addWidget(self.privacyFrame, 0, 0, 1, 4) self.moreSettingsLayout.addWidget(self.slowdownCheckbox, 2, 0, 1, 4) - self.moreSettingsLayout.addWidget(self.dontslowwithmeCheckbox, 3, 0, 1, 4) if constants.SHOW_REWIND_ON_DESYNC_CHECKBOX == True: - self.moreSettingsLayout.addWidget(self.rewindCheckbox, 4, 0, 1, 4) - self.moreSettingsLayout.addWidget(self.pauseonleaveCheckbox, 5, 0, 1, 4) - self.moreSettingsLayout.addWidget(self.alwaysshowCheckbox, 6, 0, 1, 4) - self.moreSettingsLayout.addWidget(self.donotstoreCheckbox, 7, 0, 1, 4) + self.moreSettingsLayout.addWidget(self.rewindCheckbox, 3, 0, 1, 4) + self.moreSettingsLayout.addWidget(self.dontslowwithmeCheckbox, 4, 0, 1, 2) + self.moreSettingsLayout.addWidget(self.pauseonleaveCheckbox, 5, 0, 1, 2) + self.moreSettingsLayout.addWidget(self.alwaysshowCheckbox, 4, 2, 1, 2) + self.moreSettingsLayout.addWidget(self.donotstoreCheckbox, 5, 2, 1, 2) self.moreSettingsGroup.setLayout(self.moreSettingsLayout)