From c5e5ea71d76e8bbaf43e679502df6ce2c7c0655f Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Sat, 28 Aug 2021 11:22:50 +0100 Subject: MailSettings: Use the app-mail icon for the window No app-mail-settings icon exists (yet). app-mail is also what's being embedded in the executable, so let's stick with it. --- Userland/Applications/MailSettings/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Userland') diff --git a/Userland/Applications/MailSettings/main.cpp b/Userland/Applications/MailSettings/main.cpp index 151fe21784..23826390bd 100644 --- a/Userland/Applications/MailSettings/main.cpp +++ b/Userland/Applications/MailSettings/main.cpp @@ -23,7 +23,7 @@ int main(int argc, char** argv) return 1; } - auto app_icon = GUI::Icon::default_icon("app-mail-settings"); + auto app_icon = GUI::Icon::default_icon("app-mail"); auto window = MailSettingsWindow::construct(); window->set_title("Mail Settings"); -- cgit v1.2.3