Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Multimedia
Kdenlive
Commits
465e6dbb
Commit
465e6dbb
authored
Jul 21, 2021
by
Jean-Baptiste Mardelle
Browse files
Drop custom combobox stylesheet causing unreadable text. Thanks to Martin Sandsmark for the hint.
BUG: 428755
parent
dd4d8d37
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/assets/assetpanel.cpp
View file @
465e6dbb
...
...
@@ -323,6 +323,7 @@ const QString AssetPanel::getStyleSheet()
QColor
hover_bg
=
scheme
.
decoration
(
KColorScheme
::
HoverColor
).
color
();
QColor
light_bg
=
scheme
.
shade
(
KColorScheme
::
LightShade
);
QColor
alt_bg
=
scheme
.
background
(
KColorScheme
::
NormalBackground
).
color
();
QColor
normal_bg
=
QApplication
::
palette
().
window
().
color
();
QString
stylesheet
;
...
...
@@ -377,10 +378,6 @@ const QString AssetPanel::getStyleSheet()
// group editable labels
stylesheet
.
append
(
QStringLiteral
(
"MyEditableLabel { background-color: transparent; color: palette(bright-text); border-radius: 2px;border: 1px solid "
"transparent;} MyEditableLabel:hover {border: 1px solid palette(highlight);} "
));
// transparent qcombobox
stylesheet
.
append
(
QStringLiteral
(
"QComboBox { background-color: transparent;} "
));
return
stylesheet
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment