diff options
author | Cubic Love <7754483+cubiclove@users.noreply.github.com> | 2023-01-31 22:26:38 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-02-01 19:17:48 +0100 |
commit | 0cfce93e511dcf725b8fb5bc79bc1f8d92f7b2a8 (patch) | |
tree | 2302d46f60b3169b4986569995fd98f9ccc1c029 /Userland/Applications/Presenter/main.cpp | |
parent | 38b0b32bb4219a1c58ab7a0685c61146d1c2fc25 (diff) | |
download | serenity-0cfce93e511dcf725b8fb5bc79bc1f8d92f7b2a8.zip |
Base+Presenter: Add icons for Presenter
Add application and filetype icons for Presenter in 32px and 16px
Diffstat (limited to 'Userland/Applications/Presenter/main.cpp')
-rw-r--r-- | Userland/Applications/Presenter/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Applications/Presenter/main.cpp b/Userland/Applications/Presenter/main.cpp index d97f733c14..226fe51fc0 100644 --- a/Userland/Applications/Presenter/main.cpp +++ b/Userland/Applications/Presenter/main.cpp @@ -26,7 +26,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) auto app = TRY(GUI::Application::try_create(arguments)); auto window = TRY(GUI::Window::try_create()); window->set_title("Presenter"); - window->set_icon(GUI::Icon::default_icon("app-display-settings"sv).bitmap_for_size(16)); + window->set_icon(GUI::Icon::default_icon("app-presenter"sv).bitmap_for_size(16)); auto main_widget = TRY(window->set_main_widget<PresenterWidget>()); TRY(main_widget->initialize_menubar()); window->show(); |