Utils: Add a non-toolbar variant of the MINUS icon

Make it consistent with Utils::Icons::PLUS and
Utils::Icons::PLUS_TOOLBAR

Change-Id: I2d5c69ec13ceba172c2c583895eea6fdff77a64e
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
Alessandro Portale
2022-08-11 16:30:37 +02:00
parent 1e56179d0c
commit 0ec7a3797d
7 changed files with 10 additions and 6 deletions

View File

@@ -149,8 +149,10 @@ const Icon ARROW_DOWN({
{":/utils/images/arrowdown.png", Theme::IconsBaseColor}});
const Icon ARROW_DOWN_TOOLBAR({
{":/utils/images/arrowdown.png", Theme::IconsNavigationArrowsColor}});
const Icon MINUS({
const Icon MINUS_TOOLBAR({
{":/utils/images/minus.png", Theme::IconsBaseColor}});
const Icon MINUS({
{":/utils/images/minus.png", Theme::PaletteText}}, Icon::Tint);
const Icon PLUS_TOOLBAR({
{":/utils/images/plus.png", Theme::IconsBaseColor}});
const Icon PLUS({