Browse Source

Merge pull request #8132 from myxmaster/space-between-piechart-and-balance

Space between pie chart and balance fix
master
ThomasV 3 years ago committed by GitHub
parent
commit
380b69e5b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      electrum/gui/qt/balance_dialog.py

2
electrum/gui/qt/balance_dialog.py

@ -107,7 +107,7 @@ class BalanceToolButton(QToolButton, PieChartObject):
def setText(self, text):
# this is a hack
QToolButton.setText(self, ' ' + text)
QToolButton.setText(self, ' ' + text)
def paintEvent(self, event):
QToolButton.paintEvent(self, event)

Loading…
Cancel
Save