From addc049c5ba4ebdb47316698f8deff7ba0d0b79f Mon Sep 17 00:00:00 2001 From: Philip Ridout Date: Mon, 30 Jan 2012 17:44:37 +0000 Subject: [PATCH] Set word wrap on qrDescriptionLabel so that it doesn't cause the groupbox to resize. --- openlp/plugins/remotes/lib/remotetab.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openlp/plugins/remotes/lib/remotetab.py b/openlp/plugins/remotes/lib/remotetab.py index 35fbe64cf..70005226c 100644 --- a/openlp/plugins/remotes/lib/remotetab.py +++ b/openlp/plugins/remotes/lib/remotetab.py @@ -94,6 +94,7 @@ class RemoteTab(SettingsTab): self.qrDescriptionLabel = QtGui.QLabel(self.androidAppGroupBox) self.qrDescriptionLabel.setObjectName(u'qrDescriptionLabel') self.qrDescriptionLabel.setOpenExternalLinks(True) + self.qrDescriptionLabel.setWordWrap(True) self.qrLayout.addWidget(self.qrDescriptionLabel) self.leftLayout.addStretch() self.rightLayout.addStretch()