mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 08:07:34 +00:00
PixelPaint: Use 'save' action in toolbar instead of 'save as'
I think this is likely the more common operation and makes more sense in the toolbar. It calls the 'save as' action internally anyway if there is no associated file.
This commit is contained in:
parent
c03f271bbf
commit
e2c73a114d
1 changed files with 1 additions and 1 deletions
|
@ -651,7 +651,7 @@ void MainWidget::initialize_menubar(GUI::Window& window)
|
|||
auto& toolbar = *find_descendant_of_type_named<GUI::Toolbar>("toolbar");
|
||||
toolbar.add_action(*m_new_image_action);
|
||||
toolbar.add_action(*m_open_image_action);
|
||||
toolbar.add_action(*m_save_image_as_action);
|
||||
toolbar.add_action(*m_save_image_action);
|
||||
toolbar.add_separator();
|
||||
toolbar.add_action(*m_copy_action);
|
||||
toolbar.add_action(*m_paste_action);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue