From dc6e1f5508e57fb1061b4e115895228990a96c19 Mon Sep 17 00:00:00 2001 From: Kim Woelders Date: Sat, 27 Feb 2021 20:31:11 +0100 Subject: [PATCH] group_op showhide should target all the windows groups members --- src/groups.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/groups.c b/src/groups.c index f272babf..431054f3 100644 --- a/src/groups.c +++ b/src/groups.c @@ -1,6 +1,6 @@ /* * Copyright (C) 2000-2007 Carsten Haitzler, Geoff Harrison and various contributors - * Copyright (C) 2004-2020 Kim Woelders + * Copyright (C) 2004-2021 Kim Woelders * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to @@ -192,6 +192,9 @@ GroupMatchAction(const Group * g, int action) default: match = 0; break; + case GROUP_ACTION_ANY: + match = 1; + break; case GROUP_ACTION_SET_WINDOW_BORDER: match = g->cfg.set_border; break;