app: fix action's proxy button clicks.
Using gimp_action_activate() ensures we call the action with the expected GVariant for the specific class of action (and not a NULL GVariant).
This commit is contained in:
parent
f3eb6e1677
commit
9753755249
1 changed files with 2 additions and 1 deletions
|
|
@ -1135,7 +1135,8 @@ static void
|
|||
gimp_action_proxy_button_activate (GtkButton *button,
|
||||
GimpAction *action)
|
||||
{
|
||||
gimp_action_emit_activate (action, NULL);
|
||||
/* Activate with the default parameter value. */
|
||||
gimp_action_activate (action);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Reference in a new issue