qt dark: fix "In History tab, labels while edited were being clipped"
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user