From 0bcd360266e8e7e6429b45c7d86e51912b110170 Mon Sep 17 00:00:00 2001 From: thankyouverycool <66646555+thankyouverycool@users.noreply.github.com> Date: Fri, 9 Sep 2022 08:06:08 -0400 Subject: [PATCH] LibGUI: Add ellipsis to Insert Emoji action Requires further user input --- Userland/Libraries/LibGUI/CommonActions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibGUI/CommonActions.cpp b/Userland/Libraries/LibGUI/CommonActions.cpp index ab91e093d0e..ccb32eeb611 100644 --- a/Userland/Libraries/LibGUI/CommonActions.cpp +++ b/Userland/Libraries/LibGUI/CommonActions.cpp @@ -98,7 +98,7 @@ NonnullRefPtr make_paste_action(Function callback, Core:: NonnullRefPtr make_insert_emoji_action(Function callback, Core::Object* parent) { - auto action = Action::create("&Insert Emoji", { Mod_Ctrl | Mod_Alt, Key_Space }, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/emoji.png"sv).release_value_but_fixme_should_propagate_errors(), move(callback), parent); + auto action = Action::create("&Insert Emoji...", { Mod_Ctrl | Mod_Alt, Key_Space }, Gfx::Bitmap::try_load_from_file("/res/icons/16x16/emoji.png"sv).release_value_but_fixme_should_propagate_errors(), move(callback), parent); action->set_status_tip("Open the Emoji Picker"); return action; }