X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Fmenuframe.c;h=108864679e88319a7a949dcadab8d767809f9a7a;hb=19b480058e869a588ea20be5e29017ae2052e967;hp=743f4204ca7ea7fa00cac7d1586b59697b09dfad;hpb=9d6e3907650f4bc05ebf147aeec92573d7b88758;p=chaz%2Fopenbox diff --git a/openbox/menuframe.c b/openbox/menuframe.c index 743f4204..10886467 100644 --- a/openbox/menuframe.c +++ b/openbox/menuframe.c @@ -803,7 +803,7 @@ void menu_entry_frame_show_submenu(ObMenuEntryFrame *self) menu_frame_show(f, self->frame); } -void menu_entry_frame_execute(ObMenuEntryFrame *self, guint state) +void menu_entry_frame_execute(ObMenuEntryFrame *self, guint state, Time time) { if (self->entry->type == OB_MENU_ENTRY_TYPE_NORMAL && self->entry->data.normal.enabled) @@ -821,9 +821,9 @@ void menu_entry_frame_execute(ObMenuEntryFrame *self, guint state) menu_frame_hide_all(); if (func) - func(entry, state, data); + func(entry, state, data, time); else - action_run(acts, client, state); + action_run(acts, client, state, time); } }