diff options
author | Alessandro Portale <[email protected]> | 2024-09-26 15:42:29 +0200 |
---|---|---|
committer | Alessandro Portale <[email protected]> | 2024-09-27 13:09:12 +0000 |
commit | 990a72cfcb5c18e977f0efcc2226a12548fd8250 (patch) | |
tree | f7ec4302d2faa429f26e4d7e37d02ccd2f5283ca /src/plugins/welcome/welcomeplugin.cpp | |
parent | da0cfadb208431a9214195681c38526c524e6cd2 (diff) |
Icons: Remove remnants of colored "active" state of mode icons
In Qt Creator 14, the mode icon graphics were updated. Due to their
"line style", the effect of individually coloring their active state was
disabled. The feature was not completely removed, though.
This change removes all traces of this feature. Upcoming "UI face lift
changes" will add new ways of handling the "active" state of mode icons.
Amends: b599edb9b7ed186066eef04bf06a054bc183751b
Change-Id: Ib1ffd2c7e3a0c45fdfacdad65377dbb676be80b6
Reviewed-by: Marcus Tillmanns <[email protected]>
Diffstat (limited to 'src/plugins/welcome/welcomeplugin.cpp')
-rw-r--r-- | src/plugins/welcome/welcomeplugin.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/plugins/welcome/welcomeplugin.cpp b/src/plugins/welcome/welcomeplugin.cpp index 000c9888593..7944cc8ee21 100644 --- a/src/plugins/welcome/welcomeplugin.cpp +++ b/src/plugins/welcome/welcomeplugin.cpp @@ -353,9 +353,7 @@ public: const Icon CLASSIC(":/welcome/images/mode_welcome.png"); const Icon FLAT({{":/welcome/images/mode_welcome_mask.png", Theme::IconsBaseColor}}); - const Icon FLAT_ACTIVE({{":/welcome/images/mode_welcome_mask.png", - Theme::IconsModeWelcomeActiveColor}}); - setIcon(Icon::modeIcon(CLASSIC, FLAT, FLAT_ACTIVE)); + setIcon(Icon::sideBarIcon(CLASSIC, FLAT)); setPriority(Constants::P_MODE_WELCOME); setId(Constants::MODE_WELCOME); |