From 5fc31899a2a13874e7541c8b4925a152b9055967 Mon Sep 17 00:00:00 2001 From: rdymac Date: Sun, 20 Jan 2013 17:47:28 +0100 Subject: [PATCH] Separated the new line command from text strings Separated the new line command from text strings because it causes a bug when the text strings are pulled from the Translation wiki in multiple lines text strings. --- lib/gui_lite.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gui_lite.py b/lib/gui_lite.py index d1ec35fc..1fa874f4 100644 --- a/lib/gui_lite.py +++ b/lib/gui_lite.py @@ -340,7 +340,7 @@ class MiniWindow(QDialog): # Label - extra_layout.addWidget( QLabel(_('Selecting an address will copy it to the clipboard.\nDouble clicking the label will allow you to edit it.') ),0,0) + extra_layout.addWidget( QLabel(_('Selecting an address will copy it to the clipboard.') + '\n' + _('Double clicking the label will allow you to edit it.') ),0,0) extra_layout.addWidget(self.receiving, 1,0) extra_layout.addWidget(hide_used, 2,0)