tfix #3028: add info to proxy dialog - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 482458d00da3f8a74622717f247b0b10cbb9acbd DIR parent 6b8f685b42c0201b6f62d13b5a96aa29241c0299 HTML Author: ThomasV <thomasv@electrum.org> Date: Thu, 12 Oct 2017 17:09:28 +0200 fix #3028: add info to proxy dialog Diffstat: M gui/qt/network_dialog.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- DIR diff --git a/gui/qt/network_dialog.py b/gui/qt/network_dialog.py t@@ -273,7 +273,8 @@ class NetworkChoiceLayout(object): grid.addWidget(self.proxy_port, 4, 3) grid.addWidget(self.proxy_user, 5, 2) grid.addWidget(self.proxy_password, 5, 3) - grid.setRowStretch(6, 1) + grid.addWidget(WWLabel(_('Proxy settings apply to all connections: with Electrum servers, but also with third-party services.')), 6, 0, 1, 3) + grid.setRowStretch(7, 1) # Blockchain Tab grid = QGridLayout(blockchain_tab)