From f96695632b0383feacbe99c48d1b0143edb9783d Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Mon, 22 Jun 2009 21:30:28 +0200 Subject: [PATCH] Always create array actions for popup menu items the normal way --- midori/sokoke.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/midori/sokoke.c b/midori/sokoke.c index e9db1195..46277671 100644 --- a/midori/sokoke.c +++ b/midori/sokoke.c @@ -743,6 +743,9 @@ sokoke_action_create_popup_menu_item (GtkAction* action) g_return_val_if_fail (GTK_IS_ACTION (action), NULL); + if (KATZE_IS_ARRAY_ACTION (action)) + return gtk_action_create_menu_item (action); + g_object_get (action, "label", &label, "stock-id", &stock_id, -- 2.39.5