From 1a2b6932422535999498371918e958667a973165 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Sat, 30 Jan 2021 13:34:55 +0100 Subject: [PATCH] HexEditor: Fix about dialog icon --- Userland/Applications/HexEditor/HexEditorWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/HexEditor/HexEditorWidget.cpp b/Userland/Applications/HexEditor/HexEditorWidget.cpp index cc196e02d1..e909a16f62 100644 --- a/Userland/Applications/HexEditor/HexEditorWidget.cpp +++ b/Userland/Applications/HexEditor/HexEditorWidget.cpp @@ -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));