diff options
author | okan | 2016-12-01 18:17:52 +0000 |
---|---|---|
committer | okan | 2016-12-01 18:17:52 +0000 |
commit | a6fb2061c2a3151c71f40486b03a6a149af717c3 (patch) | |
tree | 1f8211f27927fa17464a161d79b7dbecb1830574 /kbfunc.c | |
parent | ceb545c78714e7691b5bad3df39f8ce682bf30d0 (diff) | |
download | cwm-a6fb2061c2a3151c71f40486b03a6a149af717c3.tar.gz |
Change 'menu-window' to display all windows; then add 'menu-window-hidden' for
the previous behaviour of 'menu-window'. 'menu-window' becomes the default
binding; use 'bind-mouse "1" menu-window-hidden' to restore old behaviour for
those who prefer.
OK sthen@ (long long time ago on a different version)
Diffstat (limited to 'kbfunc.c')
-rw-r--r-- | kbfunc.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $OpenBSD: kbfunc.c,v 1.137 2016/11/15 18:43:09 okan Exp $ + * $OpenBSD: kbfunc.c,v 1.138 2016/12/01 18:17:52 okan Exp $ */ #include <sys/types.h> @@ -298,12 +298,13 @@ kbfunc_menu_client(void *ctx, union arg *arg, enum xev xev) struct menu *mi; struct menu_q menuq; int m = (xev == CWM_XEV_BTN); + int all = (arg->i & CWM_MENU_WINDOW_ALL); old_cc = client_current(); TAILQ_INIT(&menuq); TAILQ_FOREACH(cc, &sc->clientq, entry) { - if (m) { + if (!all) { if (cc->flags & CLIENT_HIDDEN) menuq_add(&menuq, cc, NULL); } else |