1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:47:35 +00:00

PixelPaint: Add Cut action

It's just the Copy action with erasing selection at the end.
This commit is contained in:
Karol Kosek 2022-03-18 23:36:17 +01:00 committed by Andreas Kling
parent 580c6080b5
commit 677e4845a7
2 changed files with 20 additions and 0 deletions

View file

@ -80,6 +80,7 @@ private:
RefPtr<GUI::Action> m_save_image_as_action;
RefPtr<GUI::Action> m_close_image_action;
RefPtr<GUI::Action> m_cut_action;
RefPtr<GUI::Action> m_copy_action;
RefPtr<GUI::Action> m_copy_merged_action;
RefPtr<GUI::Action> m_paste_action;