summaryrefslogtreecommitdiff
path: root/plugins/gtkui/actions.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/gtkui/actions.c')
-rw-r--r--plugins/gtkui/actions.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/gtkui/actions.c b/plugins/gtkui/actions.c
index ac74111f..ee7831f6 100644
--- a/plugins/gtkui/actions.c
+++ b/plugins/gtkui/actions.c
@@ -36,7 +36,10 @@ static void
on_actionitem_activate (GtkMenuItem *menuitem,
DB_plugin_action_t *action)
{
- action->callback (action, NULL, DDB_ACTION_CTX_MAIN);
+ // these actions are always in the MAIN context, or they are coming from new
+ // plugins, so we don't have to care about the user data for <=1.4 plugins.
+ // aren't we?..
+ action->callback (action, DDB_ACTION_CTX_MAIN);
}
void