summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Base/res/icons/16x16/rename.pngbin0 -> 215 bytes
-rw-r--r--Userland/Libraries/LibGUI/Action.cpp2
2 files changed, 1 insertions, 1 deletions
diff --git a/Base/res/icons/16x16/rename.png b/Base/res/icons/16x16/rename.png
new file mode 100644
index 0000000000..f9a6eae370
--- /dev/null
+++ b/Base/res/icons/16x16/rename.png
Binary files differ
diff --git a/Userland/Libraries/LibGUI/Action.cpp b/Userland/Libraries/LibGUI/Action.cpp
index 613c483843..98abcaa415 100644
--- a/Userland/Libraries/LibGUI/Action.cpp
+++ b/Userland/Libraries/LibGUI/Action.cpp
@@ -151,7 +151,7 @@ NonnullRefPtr<Action> make_select_all_action(Function<void(Action&)> callback, C
NonnullRefPtr<Action> make_rename_action(Function<void(Action&)> callback, Core::Object* parent)
{
- return Action::create("Re&name", Key_F2, move(callback), parent);
+ return Action::create("Re&name", Key_F2, Gfx::Bitmap::load_from_file("/res/icons/16x16/rename.png"), move(callback), parent);
}
NonnullRefPtr<Action> make_properties_action(Function<void(Action&)> callback, Core::Object* parent)