Browse Source

Make coincontrol status bar the correct height

coincointrol-statusbar
Luke Childs 5 years ago
parent
commit
8187ff20e4
  1. 2
      electrum/gui/qt/main_window.py

2
electrum/gui/qt/main_window.py

@ -1984,7 +1984,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, Logger):
def create_coincontrol_statusbar(self):
self.coincontrol_sb = sb = QStatusBar()
sb.setSizeGripEnabled(False)
sb.setFixedHeight(3 * char_width_in_lineedit())
sb.setFixedHeight(3.5 * char_width_in_lineedit())
sb.setStyleSheet('QStatusBar::item {border: None;} '
+ ColorScheme.GREEN.as_stylesheet(True))

Loading…
Cancel
Save