mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-25 19:02:07 -05:00
PixelPaint: Add new icon for New Image from Clipboard
This is just a slight variation of `/res/icons/16x16/paste.png`, I've removed the lines on the paper to make it look consistent with the "New Image" icon, which is an empty piece of paper.
This commit is contained in:
parent
e2c73a114d
commit
7c69830169
2 changed files with 1 additions and 1 deletions
BIN
Base/res/icons/pixelpaint/new-clipboard.png
Normal file
BIN
Base/res/icons/pixelpaint/new-clipboard.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 274 B |
|
@ -120,7 +120,7 @@ void MainWidget::initialize_menubar(GUI::Window& window)
|
|||
});
|
||||
|
||||
m_new_image_from_clipboard_action = GUI::Action::create(
|
||||
"&New Image from Clipboard", { Mod_Ctrl | Mod_Shift, Key_V }, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/new.png").release_value_but_fixme_should_propagate_errors(), [&](auto&) {
|
||||
"&New Image from Clipboard", { Mod_Ctrl | Mod_Shift, Key_V }, Gfx::Bitmap::try_load_from_file("/res/icons/pixelpaint/new-clipboard.png").release_value_but_fixme_should_propagate_errors(), [&](auto&) {
|
||||
create_image_from_clipboard();
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue