Base: New "cut" action icon
This commit is contained in:
parent
dfe8dea2ac
commit
45a932a600
Notes:
sideshowbarker
2024-07-19 07:19:38 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/45a932a6004
3 changed files with 1 additions and 1 deletions
BIN
Base/res/icons/16x16/edit-cut.png
Normal file
BIN
Base/res/icons/16x16/edit-cut.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 152 B |
Binary file not shown.
Before Width: | Height: | Size: 359 B |
|
@ -66,7 +66,7 @@ NonnullRefPtr<Action> make_delete_action(Function<void(Action&)> callback, Core:
|
|||
|
||||
NonnullRefPtr<Action> make_cut_action(Function<void(Action&)> callback, Core::Object* parent)
|
||||
{
|
||||
return Action::create("Cut", { Mod_Ctrl, Key_X }, Gfx::Bitmap::load_from_file("/res/icons/cut16.png"), move(callback), parent);
|
||||
return Action::create("Cut", { Mod_Ctrl, Key_X }, Gfx::Bitmap::load_from_file("/res/icons/16x16/edit-cut.png"), move(callback), parent);
|
||||
}
|
||||
|
||||
NonnullRefPtr<Action> make_copy_action(Function<void(Action&)> callback, Core::Object* parent)
|
||||
|
|
Loading…
Add table
Reference in a new issue