diff options
author | Linus Groh <mail@linusgroh.de> | 2021-08-28 11:22:50 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-08-28 11:22:50 +0100 |
commit | c5e5ea71d76e8bbaf43e679502df6ce2c7c0655f (patch) | |
tree | 8d0425035fe367ed9957d340adc8d9b217d17406 | |
parent | 822566ff1ae180bbd9ad3005778ce59d655389dc (diff) | |
download | serenity-c5e5ea71d76e8bbaf43e679502df6ce2c7c0655f.zip |
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.
-rw-r--r-- | Userland/Applications/MailSettings/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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"); |