diff options
author | Andreas Kling <kling@serenityos.org> | 2021-03-25 21:41:39 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-25 22:14:09 +0100 |
commit | 78b12e1521a5ab4e0a212c0e125b76a813be6f64 (patch) | |
tree | 63b47fca86bfba4ef53d62f301856e63f5bb2f28 /Userland/Applications/HexEditor | |
parent | fcc8e3484f9c2312d80063fe8d6251830609385a (diff) | |
download | serenity-78b12e1521a5ab4e0a212c0e125b76a813be6f64.zip |
Userland: Turn all application menus into window menus :^)
Diffstat (limited to 'Userland/Applications/HexEditor')
-rw-r--r-- | Userland/Applications/HexEditor/HexEditorWidget.cpp | 2 | ||||
-rw-r--r-- | Userland/Applications/HexEditor/main.cpp | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/Userland/Applications/HexEditor/HexEditorWidget.cpp b/Userland/Applications/HexEditor/HexEditorWidget.cpp index dea5484c75..7c7cda71f3 100644 --- a/Userland/Applications/HexEditor/HexEditorWidget.cpp +++ b/Userland/Applications/HexEditor/HexEditorWidget.cpp @@ -137,7 +137,7 @@ HexEditorWidget::~HexEditorWidget() void HexEditorWidget::initialize_menubar(GUI::MenuBar& menubar) { - auto& app_menu = menubar.add_menu("Hex Editor"); + auto& app_menu = menubar.add_menu("File"); app_menu.add_action(*m_new_action); app_menu.add_action(*m_open_action); app_menu.add_action(*m_save_action); diff --git a/Userland/Applications/HexEditor/main.cpp b/Userland/Applications/HexEditor/main.cpp index f9217af243..d83c428542 100644 --- a/Userland/Applications/HexEditor/main.cpp +++ b/Userland/Applications/HexEditor/main.cpp @@ -61,8 +61,7 @@ int main(int argc, char** argv) auto menubar = GUI::MenuBar::construct(); hex_editor_widget.initialize_menubar(menubar); - app->set_menubar(menubar); - + window->set_menubar(menubar); window->show(); window->set_icon(app_icon.bitmap_for_size(16)); |