From e2c73a114d387556011735b296a6304c528137ca Mon Sep 17 00:00:00 2001 From: Mustafa Quraish Date: Tue, 4 Jan 2022 22:12:24 -0500 Subject: [PATCH] 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. --- Userland/Applications/PixelPaint/MainWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/PixelPaint/MainWidget.cpp b/Userland/Applications/PixelPaint/MainWidget.cpp index 56f00d606b..3fddce4a44 100644 --- a/Userland/Applications/PixelPaint/MainWidget.cpp +++ b/Userland/Applications/PixelPaint/MainWidget.cpp @@ -651,7 +651,7 @@ void MainWidget::initialize_menubar(GUI::Window& window) auto& toolbar = *find_descendant_of_type_named("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);