From 616eb27e21650f42102678bc5ec8034f988ad282 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Fri, 5 Jun 2026 08:20:30 +0200 Subject: [PATCH] fix(menu): Fix icon colors on waffle menu [skip ci] Signed-off-by: Joas Schilling --- apps/appstore/img/app.svg | 2 +- core/src/components/AppMenu.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/appstore/img/app.svg b/apps/appstore/img/app.svg index 066a066f2bd..4b805d6ada5 100644 --- a/apps/appstore/img/app.svg +++ b/apps/appstore/img/app.svg @@ -1 +1 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/core/src/components/AppMenu.vue b/core/src/components/AppMenu.vue index 7c1700a4185..a018af53c7c 100644 --- a/core/src/components/AppMenu.vue +++ b/core/src/components/AppMenu.vue @@ -179,7 +179,7 @@ export default defineComponent({ return '' } return this.currentApp.type === 'settings' - ? imagePath('core', 'actions/settings.svg') + ? imagePath('core', 'actions/settings-dark.svg') : this.currentApp.icon },