diff options
author | Andreas Kling <kling@serenityos.org> | 2022-01-04 17:48:49 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-01-04 21:49:44 +0100 |
commit | 82b071943d67ac2a0eb7c6286b9e288d00351f81 (patch) | |
tree | 84a05600d93ec2045c2bf9b0a21d85a2f3dd7583 /Userland/Applications/PixelPaint/MainWidget.h | |
parent | 5c68e91dd72e919d63ced309999c672712ab0e3f (diff) | |
download | serenity-82b071943d67ac2a0eb7c6286b9e288d00351f81.zip |
PixelPaint: Add "save" action
Let's have this as a complement to the "save as" action :^)
Diffstat (limited to 'Userland/Applications/PixelPaint/MainWidget.h')
-rw-r--r-- | Userland/Applications/PixelPaint/MainWidget.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Applications/PixelPaint/MainWidget.h b/Userland/Applications/PixelPaint/MainWidget.h index 094a3de713..fc74b625b6 100644 --- a/Userland/Applications/PixelPaint/MainWidget.h +++ b/Userland/Applications/PixelPaint/MainWidget.h @@ -61,6 +61,7 @@ private: RefPtr<GUI::Action> m_new_image_action; RefPtr<GUI::Action> m_new_image_from_clipboard_action; RefPtr<GUI::Action> m_open_image_action; + RefPtr<GUI::Action> m_save_image_action; RefPtr<GUI::Action> m_save_image_as_action; RefPtr<GUI::Action> m_copy_action; |