mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
Expand default BTC / fiat amount width. Seems to suffice for expected usage.
This commit is contained in:
parent
6646b7a43f
commit
ec953c7f30
1 changed files with 2 additions and 0 deletions
|
@ -18,6 +18,8 @@ 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.base_unit = base_unit
|
||||
self.textChanged.connect(self.numbify)
|
||||
self.is_int = is_int
|
||||
|
|
Loading…
Add table
Reference in a new issue