URI: 
       tkivy: improve layout - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit c55a253f6d8b659bacaac90ab4ea4ccb9fe7ab15
   DIR parent 2f0550a747f400b0cd7ffaa7d849b4549edeab60
  HTML Author: ThomasV <thomasv@electrum.org>
       Date:   Mon, 14 Dec 2015 13:37:19 +0100
       
       kivy: improve layout
       
       Diffstat:
         M gui/kivy/uix/dialogs/label_dialog.… |       1 +
         M gui/kivy/uix/ui_screens/receive.kv  |       1 +
         M gui/kivy/uix/ui_screens/send.kv     |       4 ++--
       
       3 files changed, 4 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/gui/kivy/uix/dialogs/label_dialog.py b/gui/kivy/uix/dialogs/label_dialog.py
       t@@ -8,6 +8,7 @@ Builder.load_string('''
            id: popup
            title: ''
            size_hint: 0.8, 0.3
       +    pos_hint: {'top':0.9}
            BoxLayout:
                orientation: 'vertical'
                Widget:
   DIR diff --git a/gui/kivy/uix/ui_screens/receive.kv b/gui/kivy/uix/ui_screens/receive.kv
       t@@ -51,6 +51,7 @@ ReceiveScreen:
                    BoxLayout:
                        size_hint: 1, None
                        height: blue_bottom.item_height
       +                spacing: '5dp'
                        Image:
                            source: 'atlas://gui/kivy/theming/light/globe'
                            size_hint: None, None
   DIR diff --git a/gui/kivy/uix/ui_screens/send.kv b/gui/kivy/uix/ui_screens/send.kv
       t@@ -23,6 +23,7 @@ SendScreen:
                    id: blue_bottom
                    size_hint: 1, None
                    height: self.minimum_height
       +            spacing: '5dp'
                    BoxLayout:
                        size_hint: 1, None
                        height: blue_bottom.item_height
       t@@ -42,6 +43,7 @@ SendScreen:
                    BoxLayout:
                        size_hint: 1, None
                        height: blue_bottom.item_height
       +                spacing: '5dp'
                        Image:
                            source: 'atlas://gui/kivy/theming/light/globe'
                            size_hint: None, None
       t@@ -52,13 +54,11 @@ SendScreen:
                            default_text: _('Amount')
                            text: s.amount if s.amount else _('Amount')
                            on_release: app.amount_dialog(s, True)
       -
                    CardSeparator:
                        opacity: message_selection.opacity
                        color: blue_bottom.foreground_color
                    BoxLayout:
                        id: message_selection
       -                opacity: 1
                        size_hint: 1, None
                        height: blue_bottom.item_height
                        spacing: '5dp'