diff --git a/Userland/Applications/ThemeEditor/main.cpp b/Userland/Applications/ThemeEditor/main.cpp index a4ffde76c6..a867794c8f 100644 --- a/Userland/Applications/ThemeEditor/main.cpp +++ b/Userland/Applications/ThemeEditor/main.cpp @@ -26,6 +26,7 @@ #include #include #include +#include #include #include #include @@ -312,8 +313,7 @@ ErrorOr serenity_main(Main::Arguments arguments) } if (auto sync_result = theme->sync(); sync_result.is_error()) { - // FIXME: Expose this to the user, since failing to save is important to know about! - dbgln("Failed to save theme file: {}", sync_result.error()); + GUI::MessageBox::show_error(window, String::formatted("Failed to save theme file: {}", sync_result.error())); } };