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
Notes: sideshowbarker 2024-07-18 22:44:02 +09:00

View File

@ -227,7 +227,7 @@ HexEditorWidget::HexEditorWidget()
}));
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));