mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 12:48:10 +00:00
LibGUI+Userland: Port Action status tips to String
This commit is contained in:
parent
4b169cf25f
commit
5234a30731
16 changed files with 86 additions and 85 deletions
|
@ -79,7 +79,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
|
|||
auto auto_modifier_action = GUI::Action::create("Auto-Modifier", [&](auto& act) {
|
||||
keyboard_mapper_widget->set_automatic_modifier(act.is_checked());
|
||||
});
|
||||
auto_modifier_action->set_status_tip("Toggle automatic modifier");
|
||||
auto_modifier_action->set_status_tip(TRY("Toggle automatic modifier"_string));
|
||||
auto_modifier_action->set_checkable(true);
|
||||
auto_modifier_action->set_checked(false);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue