tkivy: add info text to network dialog - electrum - Electrum Bitcoin wallet
 (HTM) git clone https://git.parazyd.org/electrum
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
       ---
 (DIR) commit d3c537d0db0454f207ddd836339621c55bde30d9
 (DIR) parent cf56b8a63cc05e3297412eb341fcfb2a1933192b
 (HTM) Author: ThomasV <thomasv@electrum.org>
       Date:   Mon, 22 Feb 2016 11:34:21 +0100
       
       kivy: add info text to network dialog
       
       Diffstat:
         M gui/kivy/uix/ui_screens/network.kv  |       8 ++++++++
       
       1 file changed, 8 insertions(+), 0 deletions(-)
       ---
 (DIR) diff --git a/gui/kivy/uix/ui_screens/network.kv b/gui/kivy/uix/ui_screens/network.kv
       t@@ -9,6 +9,8 @@ Popup:
        
            BoxLayout:
                orientation: 'vertical'
       +        padding: '10dp'
       +        spacing: '10dp'
                TopLabel:
                    s1: _("Connected to %d nodes.")%root.n_nodes if root.n_nodes else _("Not connected?")
                    s2: _("Blockchain length") + ": %d "%root.blockchain_height + _("blocks")
       t@@ -32,6 +34,12 @@ Popup:
                        size_hint_y: None
                Widget:
                    size_hint: 1, 0.1
       +        TopLabel:
       +            text: _("Electrum retrieves your wallet information from a single server (Address server). In addition, it connects to a number of extra nodes, in order to fetch block headers. Block headers are used to verify the information sent by the address server, using Simple Payment Verification (SPV).")
       +            font_size: '6pt'
       +        Widget:
       +            size_hint: 1, 0.1
       +
                BoxLayout:
                    Widget:
                        size_hint: 0.5, None