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

Base+VideoPlayer: Add an icon for video player

Co-authored-by: TreuKS <ks2225@protonmail.com>
This commit is contained in:
Slimey 2022-11-06 16:15:20 +00:00 committed by Brian Gianforcaro
parent d736b2c3c3
commit e00b16460c
5 changed files with 5 additions and 2 deletions

View file

@ -215,7 +215,7 @@ void VideoPlayerWidget::initialize_menubar(GUI::Window& window)
}));
auto& help_menu = window.add_menu("&Help");
help_menu.add_action(GUI::CommonActions::make_about_action("Video Player", GUI::Icon::default_icon("window"sv), &window));
help_menu.add_action(GUI::CommonActions::make_about_action("Video Player", GUI::Icon::default_icon("app-video-player"sv), &window));
}
}