mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:47:44 +00:00
PixelPaint: Put undo/redo actions on top of the Edit menu
To be consistent with the order with other apps on the system. :^)
This commit is contained in:
parent
a51fce6c0f
commit
580c6080b5
1 changed files with 3 additions and 2 deletions
|
@ -267,11 +267,12 @@ void MainWidget::initialize_menubar(GUI::Window& window)
|
|||
editor->redo();
|
||||
});
|
||||
|
||||
m_edit_menu->add_action(*m_undo_action);
|
||||
m_edit_menu->add_action(*m_redo_action);
|
||||
m_edit_menu->add_separator();
|
||||
m_edit_menu->add_action(*m_copy_action);
|
||||
m_edit_menu->add_action(*m_copy_merged_action);
|
||||
m_edit_menu->add_action(*m_paste_action);
|
||||
m_edit_menu->add_action(*m_undo_action);
|
||||
m_edit_menu->add_action(*m_redo_action);
|
||||
m_edit_menu->add_separator();
|
||||
|
||||
m_edit_menu->add_action(GUI::CommonActions::make_select_all_action([&](auto&) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue