diff options
author | Maciej <sppmacd@pm.me> | 2021-11-26 21:04:12 +0100 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2022-01-04 07:29:50 +0000 |
commit | 41d02bd5e6aba16d2ee40cd0819295c0b7cbcd4f (patch) | |
tree | 37d3f64de4ccf54abca14f555e398dc25c4385a1 /Userland/Applications/PixelPaint/MainWidget.h | |
parent | eefad5ccd7ff79695a4b6413d0072cabc093bed5 (diff) | |
download | serenity-41d02bd5e6aba16d2ee40cd0819295c0b7cbcd4f.zip |
PixelPaint: Add a way to quickly create an image from clipboard
Ctrl+Shift+V, like in GIMP.
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 8e2118aa62..3de6629f55 100644 --- a/Userland/Applications/PixelPaint/MainWidget.h +++ b/Userland/Applications/PixelPaint/MainWidget.h @@ -58,6 +58,7 @@ private: RefPtr<GUI::ComboBox> m_zoom_combobox; 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_as_action; |