diff --git a/electrum/gui/qml/components/WalletMainView.qml b/electrum/gui/qml/components/WalletMainView.qml index 07d3a63e6..f41cb7055 100644 --- a/electrum/gui/qml/components/WalletMainView.qml +++ b/electrum/gui/qml/components/WalletMainView.qml @@ -81,13 +81,16 @@ Item { currentIndex: swipeview.currentIndex TabButton { text: qsTr('Receive') + font.pixelSize: constants.fontSizeLarge } TabButton { text: qsTr('History') + font.pixelSize: constants.fontSizeLarge } TabButton { enabled: !Daemon.currentWallet.isWatchOnly text: qsTr('Send') + font.pixelSize: constants.fontSizeLarge } Component.onCompleted: tabbar.setCurrentIndex(1) } diff --git a/electrum/gui/qml/components/Wallets.qml b/electrum/gui/qml/components/Wallets.qml index c3a7696a3..b131953fe 100644 --- a/electrum/gui/qml/components/Wallets.qml +++ b/electrum/gui/qml/components/Wallets.qml @@ -10,7 +10,7 @@ import "controls" Pane { id: rootItem - property string title: 'Wallets' + property string title: qsTr('Wallets') ColumnLayout { id: layout diff --git a/electrum/gui/qml/qefx.py b/electrum/gui/qml/qefx.py index 66a634f87..2102a2cdd 100644 --- a/electrum/gui/qml/qefx.py +++ b/electrum/gui/qml/qefx.py @@ -99,8 +99,8 @@ class QEFX(QObject): else: try: sd = Decimal(satoshis) - if sd == 0: - return '' + #if sd == 0: + #return '' except: return '' if plain: diff --git a/electrum/gui/qml/qewallet.py b/electrum/gui/qml/qewallet.py index 64b072694..2b499d97d 100644 --- a/electrum/gui/qml/qewallet.py +++ b/electrum/gui/qml/qewallet.py @@ -225,15 +225,15 @@ class QEWallet(QObject): balanceChanged = pyqtSignal() - @pyqtProperty(int, notify=balanceChanged) + @pyqtProperty('quint64', notify=balanceChanged) def frozenBalance(self): return self.wallet.get_frozen_balance() - @pyqtProperty(int, notify=balanceChanged) + @pyqtProperty('quint64', notify=balanceChanged) def unconfirmedBalance(self): return self.wallet.get_balance()[1] - @pyqtProperty(int, notify=balanceChanged) + @pyqtProperty('quint64', notify=balanceChanged) def confirmedBalance(self): c, u, x = self.wallet.get_balance() self._logger.info('balance: ' + str(c) + ' ' + str(u) + ' ' + str(x) + ' ')