From e4dc72b7a4a9eae3e86774efa6c8231a866898cc Mon Sep 17 00:00:00 2001 From: Robert Adam Date: Wed, 2 Jun 2021 08:05:28 +0200 Subject: [PATCH] FIX(client, ui): Use proper name for fallback theme 2cd4635e85ba8629e98a956d1f73d99f2a166728 has integrated the theme submodule into the main repository and by doing so renamed the default theme from "Mumble" to "Default". When using no theme (The "None" theme) for the application's style, it would fail to find the necessary icons though. This is because the fallback theme that is used in this case was still referring to the old "Mumble" theme that no longer exists. This commit fixes the issue by changing the name referenced in the fallback theme to "Default" again. Fixes #5086 --- src/mumble/Themes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mumble/Themes.cpp b/src/mumble/Themes.cpp index aba833d0b..1dfdd9d4e 100644 --- a/src/mumble/Themes.cpp +++ b/src/mumble/Themes.cpp @@ -49,7 +49,7 @@ void Themes::applyFallback() { qWarning() << "Applying fallback style sheet"; QStringList skinPaths; - skinPaths << QLatin1String(":/themes/Mumble"); + skinPaths << QLatin1String(":/themes/Default"); QString defaultTheme = getDefaultStylesheet(); setTheme(defaultTheme, skinPaths); }