From 0b189300173e3f77a15ef2d6b9ae50e4ea5ec3dd Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sun, 12 Feb 2023 17:39:47 +0100 Subject: [PATCH] fix: Invalid theme load error --- lib/libimhex/source/api/theme_manager.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/libimhex/source/api/theme_manager.cpp b/lib/libimhex/source/api/theme_manager.cpp index 88cf69dd3..df42e1fd4 100644 --- a/lib/libimhex/source/api/theme_manager.cpp +++ b/lib/libimhex/source/api/theme_manager.cpp @@ -52,7 +52,6 @@ namespace hex::api { void ThemeManager::changeTheme(std::string name) { if (!s_themes.contains(name)) { if (s_themes.empty()) { - hex::log::error("Theme '{}' does not exist and no other themes are available!", name); return; } else { const std::string &defaultTheme = s_themes.begin()->first;