Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Plasma
Plasma Breeze visual style
Commits
386b12d3
Commit
386b12d3
authored
Mar 06, 2022
by
Jan Blackquill
🌈
Committed by
Nate Graham
Mar 06, 2022
Browse files
kstyle: fix dock title toolbar buttons not indicating selected/active state
BUG: 440231
FIXED-IN: 5.24.3
parent
ca408615
Pipeline
#146030
passed with stage
in 2 minutes and 23 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
kstyle/breezestyle.cpp
View file @
386b12d3
...
...
@@ -4629,6 +4629,8 @@ namespace Breeze
const
QIcon
::
State
iconState
(
sunken
?
QIcon
::
On
:
QIcon
::
Off
);
QIcon
::
Mode
iconMode
;
if
(
!
enabled
)
iconMode
=
QIcon
::
Disabled
;
else
if
(
!
flat
&&
hasFocus
)
iconMode
=
QIcon
::
Selected
;
else
if
(
mouseOver
&&
flat
)
iconMode
=
QIcon
::
Active
;
else
iconMode
=
QIcon
::
Normal
;
const
QPixmap
pixmap
=
_helper
->
coloredIcon
(
toolButtonOption
->
icon
,
toolButtonOption
->
palette
,
iconSize
,
iconMode
,
iconState
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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