tkivy: show receive address as Label - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 274dc256b557920286d7a45cf565fa741f029d77 DIR parent 4eff85957d83f2e8c7f435e8c2ac7365cf06aec2 HTML Author: ThomasV <thomasv@electrum.org> Date: Fri, 16 Oct 2015 12:33:55 +0200 kivy: show receive address as Label Diffstat: M gui/kivy/uix/ui_screens/receive.kv | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) --- DIR diff --git a/gui/kivy/uix/ui_screens/receive.kv b/gui/kivy/uix/ui_screens/receive.kv t@@ -15,12 +15,6 @@ ReceiveScreen: spacing: '12dp' orientation: 'vertical' size_hint: 1, 1 - - AddressSelector: - id: address - size_hint: 1, None - height: '38dp' - FloatLayout: id: bl QRCodeWidget: t@@ -32,6 +26,11 @@ ReceiveScreen: on_touch_down: self.shaded = not self.shaded self.foreground_color = (0, 0, 0, 0.5) if self.shaded else (0, 0, 0, 0) + Label: + id: address + size_hint: 1, None + height: '38dp' + opacity: 0.5 if qr.shaded else 1 SendReceiveBlueBottom: id: blue_bottom