summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Base/etc/FileIconProvider.ini1
-rw-r--r--Base/res/icons/16x16/app-presenter.pngbin0 -> 244 bytes
-rw-r--r--Base/res/icons/16x16/filetype-presenter.pngbin0 -> 237 bytes
-rw-r--r--Base/res/icons/32x32/app-presenter.pngbin0 -> 405 bytes
-rw-r--r--Base/res/icons/32x32/filetype-presenter.pngbin0 -> 318 bytes
-rw-r--r--Userland/Applications/Presenter/CMakeLists.txt2
-rw-r--r--Userland/Applications/Presenter/PresenterWidget.cpp2
-rw-r--r--Userland/Applications/Presenter/main.cpp2
8 files changed, 4 insertions, 3 deletions
diff --git a/Base/etc/FileIconProvider.ini b/Base/etc/FileIconProvider.ini
index 5cb35f17f7..c9e0eb94a1 100644
--- a/Base/etc/FileIconProvider.ini
+++ b/Base/etc/FileIconProvider.ini
@@ -24,6 +24,7 @@ object=*.o,*.obj
gml=*.gml
palette=*.palette
pdf=*.pdf
+presenter=*.presenter
python=*.py
ruby=*.rb
shell=*.sh,*.bash,*.zsh
diff --git a/Base/res/icons/16x16/app-presenter.png b/Base/res/icons/16x16/app-presenter.png
new file mode 100644
index 0000000000..dc72962f6b
--- /dev/null
+++ b/Base/res/icons/16x16/app-presenter.png
Binary files differ
diff --git a/Base/res/icons/16x16/filetype-presenter.png b/Base/res/icons/16x16/filetype-presenter.png
new file mode 100644
index 0000000000..a8253fb203
--- /dev/null
+++ b/Base/res/icons/16x16/filetype-presenter.png
Binary files differ
diff --git a/Base/res/icons/32x32/app-presenter.png b/Base/res/icons/32x32/app-presenter.png
new file mode 100644
index 0000000000..5ba77e88e2
--- /dev/null
+++ b/Base/res/icons/32x32/app-presenter.png
Binary files differ
diff --git a/Base/res/icons/32x32/filetype-presenter.png b/Base/res/icons/32x32/filetype-presenter.png
new file mode 100644
index 0000000000..f97b4fc2a4
--- /dev/null
+++ b/Base/res/icons/32x32/filetype-presenter.png
Binary files differ
diff --git a/Userland/Applications/Presenter/CMakeLists.txt b/Userland/Applications/Presenter/CMakeLists.txt
index 7fd33b82b1..8add0c3d24 100644
--- a/Userland/Applications/Presenter/CMakeLists.txt
+++ b/Userland/Applications/Presenter/CMakeLists.txt
@@ -13,5 +13,5 @@ set(SOURCES
Slide.cpp
SlideObject.cpp
)
-serenity_app(Presenter ICON app-display-settings)
+serenity_app(Presenter ICON app-presenter)
target_link_libraries(Presenter PRIVATE LibWebView LibGUI LibGfx LibFileSystemAccessClient LibCore LibMain)
diff --git a/Userland/Applications/Presenter/PresenterWidget.cpp b/Userland/Applications/Presenter/PresenterWidget.cpp
index c9cf6e5fc6..f81d89c998 100644
--- a/Userland/Applications/Presenter/PresenterWidget.cpp
+++ b/Userland/Applications/Presenter/PresenterWidget.cpp
@@ -102,7 +102,7 @@ ErrorOr<void> PresenterWidget::initialize_menubar()
update_slides_actions();
auto help_menu = TRY(window->try_add_menu("&Help"));
- TRY(help_menu->try_add_action(GUI::CommonActions::make_about_action("Presenter", GUI::Icon::default_icon("app-display-settings"sv))));
+ TRY(help_menu->try_add_action(GUI::CommonActions::make_about_action("Presenter", GUI::Icon::default_icon("app-presenter"sv))));
return {};
}
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();