mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 14:07:46 +00:00
LibGUI: Add ellipsis to Insert Emoji action
Requires further user input
This commit is contained in:
parent
f8e65d24cf
commit
0bcd360266
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
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");
|
action->set_status_tip("Open the Emoji Picker");
|
||||||
return action;
|
return action;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue