From 9b09ad9a7af4c57aa230c4efc2ea9a30b9c0d293 Mon Sep 17 00:00:00 2001 From: Clayton Groeneveld Date: Mon, 11 Jul 2022 23:45:09 -0500 Subject: [PATCH] UI: Fix menu icons not showing up The menu icon was set only in the Yami theme. --- UI/data/themes/Acri.qss | 4 ++++ UI/data/themes/Dark.qss | 3 +++ UI/data/themes/Rachni.qss | 4 ++++ UI/data/themes/System.qss | 4 ++++ 4 files changed, 15 insertions(+) diff --git a/UI/data/themes/Acri.qss b/UI/data/themes/Acri.qss index 54e91b2cc..496c55055 100644 --- a/UI/data/themes/Acri.qss +++ b/UI/data/themes/Acri.qss @@ -379,6 +379,10 @@ QToolButton:pressed { qproperty-icon: url(./Dark/media-pause.svg); } +* [themeID="menuIconSmall"] { + qproperty-icon: url(./Dark/dots-vert.svg); +} + /* Tab Widget */ QTabWidget::pane { /* The tab widget frame */ diff --git a/UI/data/themes/Dark.qss b/UI/data/themes/Dark.qss index fa1e93939..4cf1d96c6 100644 --- a/UI/data/themes/Dark.qss +++ b/UI/data/themes/Dark.qss @@ -287,6 +287,9 @@ QToolButton:pressed { qproperty-icon: url(./Dark/media-pause.svg); } +* [themeID="menuIconSmall"] { + qproperty-icon: url(./Dark/dots-vert.svg); +} /* Tab Widget */ diff --git a/UI/data/themes/Rachni.qss b/UI/data/themes/Rachni.qss index b0f367ae7..a7e4fcdec 100644 --- a/UI/data/themes/Rachni.qss +++ b/UI/data/themes/Rachni.qss @@ -516,6 +516,10 @@ QToolButton:pressed { qproperty-icon: url(./Dark/media-pause.svg); } +* [themeID="menuIconSmall"] { + qproperty-icon: url(./Dark/dots-vert.svg); +} + /***********************/ /* --- Combo boxes --- */ /***********************/ diff --git a/UI/data/themes/System.qss b/UI/data/themes/System.qss index 82dfbc42d..bd4ae72a8 100644 --- a/UI/data/themes/System.qss +++ b/UI/data/themes/System.qss @@ -43,6 +43,10 @@ qproperty-icon: url(:/res/images/media-pause.svg); } +* [themeID="menuIconSmall"] { + qproperty-icon: url(:res/images/dots-vert.svg); +} + MuteCheckBox { outline: none; }