1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:07:35 +00:00

Base+Presenter: Add icons for Presenter

Add application and filetype icons for Presenter in 32px and 16px
This commit is contained in:
Cubic Love 2023-01-31 22:26:38 +00:00 committed by Andreas Kling
parent 38b0b32bb4
commit 0cfce93e51
8 changed files with 4 additions and 3 deletions

View file

@ -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();