tkivy: fix unicode bug - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit b0311885a55365944794a345b65225101b9c4c65
DIR parent fa7fba53fcb11a5f4d17c081182e1c792c889ada
HTML Author: ThomasV <thomasv@electrum.org>
Date: Mon, 25 Jan 2016 12:37:59 +0100
kivy: fix unicode bug
Diffstat:
M gui/kivy/main.kv | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
---
DIR diff --git a/gui/kivy/main.kv b/gui/kivy/main.kv
t@@ -309,9 +309,7 @@ BoxLayout:
bold: True
markup: True
color: 1, 1, 1, 1
- text:
- "[color=#777777]{}[/color]"\
- .format(app.status)
+ text: "[color=#777777]"+app.status+"[/color]"
font_size: '22dp'
minimum_width: '1dp'
on_release: app.popup_dialog('status')