URI: 
       tfix decimal point in AmountEdit - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit 4eeacde2b1c8bfc5177f6e794ea690d696f34589
   DIR parent 26328d0458c9900fc9ddf8d66071fef803d37f38
  HTML Author: ThomasV <thomasv@gitorious>
       Date:   Mon, 16 Jun 2014 18:38:28 +0200
       
       fix decimal point in AmountEdit
       
       Diffstat:
         M gui/qt/amountedit.py                |       5 ++++-
       
       1 file changed, 4 insertions(+), 1 deletion(-)
       ---
   DIR diff --git a/gui/qt/amountedit.py b/gui/qt/amountedit.py
       t@@ -21,6 +21,9 @@ class AmountEdit(MyLineEdit):
                self.is_shortcut = False
                self.help_palette = QPalette()
        
       +    def decimal_point(self):
       +        return 8
       +
            def numbify(self):
                text = unicode(self.text()).strip()
                if text == '!':
       t@@ -33,7 +36,7 @@ class AmountEdit(MyLineEdit):
                    if '.' in s:
                        p = s.find('.')
                        s = s.replace('.','')
       -                s = s[:p] + '.' + s[p:p+8]
       +                s = s[:p] + '.' + s[p:p+self.decimal_point()]
                self.setText(s)
                self.setCursorPosition(pos)