From: Ed Page Date: Fri, 5 Aug 2011 01:27:13 +0000 (-0500) Subject: Fixing button sizing X-Git-Url: http://git.maemo.org/git/?p=gc-dialer;a=commitdiff_plain;h=907dce53fd3ac60a6fe0ac32152693c05fa4e93b Fixing button sizing --- diff --git a/src/dialogs.py b/src/dialogs.py index 04c3b2b..8fbf328 100644 --- a/src/dialogs.py +++ b/src/dialogs.py @@ -249,8 +249,11 @@ class AccountDialog(QtCore.QObject, qwrappers.WindowWrapper): self._cancelButton = QtGui.QPushButton("&Cancel") self._cancelButton.clicked.connect(self._on_settings_cancel) self._buttonLayout = QtGui.QHBoxLayout() + self._buttonLayout.addStretch() self._buttonLayout.addWidget(self._cancelButton) + self._buttonLayout.addStretch() self._buttonLayout.addWidget(self._applyButton) + self._buttonLayout.addStretch() self._layout.addWidget(self._scrollSettings) self._layout.addLayout(self._buttonLayout) @@ -860,7 +863,9 @@ class SMSEntryWindow(qwrappers.WindowWrapper): self._buttonLayout = QtGui.QHBoxLayout() self._buttonLayout.addWidget(self._characterCountLabel) + self._buttonLayout.addStretch() self._buttonLayout.addWidget(self._singleNumberSelector) + self._buttonLayout.addStretch() self._buttonLayout.addWidget(self._smsButton) self._buttonLayout.addWidget(self._dialButton) self._buttonLayout.addWidget(self._cancelButton)