diff --git a/electrum/gui/qt/stylesheet_patcher.py b/electrum/gui/qt/stylesheet_patcher.py index 4699c4cd4..1a313ac2e 100644 --- a/electrum/gui/qt/stylesheet_patcher.py +++ b/electrum/gui/qt/stylesheet_patcher.py @@ -13,6 +13,13 @@ def patch_qt_stylesheet(use_dark_theme: bool) -> None: style_sheet = app.styleSheet() style_sheet = style_sheet + ''' - QAbstractScrollArea { padding: 0px; } + /* PayToEdit text was being clipped */ + QAbstractScrollArea { + padding: 0px; + } + /* In History tab, labels while edited were being clipped (Windows) */ + QAbstractItemView QLineEdit { + padding: 0px; + } ''' app.setStyleSheet(style_sheet)