1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:28:12 +00:00

LibGUI+TextEditor: Make GButton activate its action if present

Previously even if you assigned a GAction to a GButton, you still had
to activate() the action manually by hooking the GButton::on_click
callback.
This commit is contained in:
Andreas Kling 2019-08-25 21:42:37 +02:00
parent ded005500d
commit e8e8741c88
3 changed files with 2 additions and 9 deletions

View file

@ -31,9 +31,6 @@ void GToolBar::add_action(GAction& action)
button->set_icon(item->action->icon());
else
button->set_text(item->action->text());
button->on_click = [&action](const GButton&) {
action.activate();
};
button->set_button_style(ButtonStyle::CoolBar);
button->set_size_policy(SizePolicy::Fixed, SizePolicy::Fixed);