enlarge amount field witdh

This commit is contained in:
zebra-lucky 2018-07-25 03:11:15 +03:00
parent c5d05fc06a
commit 13def31241
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ class AmountEdit(MyLineEdit):
def __init__(self, base_unit, is_int = False, parent=None):
QLineEdit.__init__(self, parent)
# This seems sufficient for hundred-BTC amounts with 8 decimals
self.setFixedWidth(140)
self.setFixedWidth(180)
self.base_unit = base_unit
self.textChanged.connect(self.numbify)
self.is_int = is_int