From: Dana Jansens Date: Sun, 31 Aug 2003 18:58:10 +0000 (+0000) Subject: only hide menus if theyre supposed to when executing X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=49d58ec9ba5380f97a4524edf5d5925ea5aa6180;p=chaz%2Fopenbox only hide menus if theyre supposed to when executing --- diff --git a/openbox/menuframe.c b/openbox/menuframe.c index 7052296e..640e860e 100644 --- a/openbox/menuframe.c +++ b/openbox/menuframe.c @@ -667,7 +667,8 @@ void menu_entry_frame_execute(ObMenuEntryFrame *self, gboolean hide) ObClient *client = self->frame->client; /* release grabs before executing the shit */ - menu_frame_hide_all(); + if (hide) + menu_frame_hide_all(); if (func) func(entry, data);