LibGUI: Add ellipsis to Insert Emoji action

Requires further user input
This commit is contained in:
thankyouverycool 2022-09-09 08:06:08 -04:00 committed by Tim Flynn
parent f8e65d24cf
commit 0bcd360266
Notes: sideshowbarker 2024-07-17 07:19:07 +09:00

View File

@ -98,7 +98,7 @@ NonnullRefPtr<Action> make_paste_action(Function<void(Action&)> callback, Core::
NonnullRefPtr<Action> make_insert_emoji_action(Function<void(Action&)> 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;
}