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

HexEditor: Fix about dialog icon

This commit is contained in:
Linus Groh 2021-01-30 13:34:55 +01:00 committed by Andreas Kling
parent 5b43419a63
commit 1a2b693242

View file

@ -227,7 +227,7 @@ HexEditorWidget::HexEditorWidget()
})); }));
auto& help_menu = menubar->add_menu("Help"); auto& help_menu = menubar->add_menu("Help");
help_menu.add_action(GUI::CommonActions::make_about_action("Hex Editor", GUI::Icon::default_icon("Hex Editor"), window())); help_menu.add_action(GUI::CommonActions::make_about_action("Hex Editor", GUI::Icon::default_icon("app-hexeditor"), window()));
GUI::Application::the()->set_menubar(move(menubar)); GUI::Application::the()->set_menubar(move(menubar));