kwo pushed a commit to branch master. http://git.enlightenment.org/e16/e16.git/commit/?id=dc6e1f5508e57fb1061b4e115895228990a96c19
commit dc6e1f5508e57fb1061b4e115895228990a96c19 Author: Kim Woelders <[email protected]> Date: Sat Feb 27 20:31:11 2021 +0100 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; --
