aboutsummaryrefslogtreecommitdiffstats
path: root/group.c
diff options
context:
space:
mode:
authorokan2009-01-16 15:24:14 +0000
committerokan2009-01-16 15:24:14 +0000
commit13a190c9c75ba29a569c4adf686cd05b0cd698ac (patch)
tree83f36d330560f5871cd994ba90e3c855514d0766 /group.c
parentf069a19b033cc9adb37dea328d36f15bcdc0c892 (diff)
downloadcwm-13a190c9c75ba29a569c4adf686cd05b0cd698ac.tar.gz
remove pwin, bringing us to one client, one window. we no longer have
to push attributes around, so things get a lot simplier, while fixing a few issues in the meantime; original suggestion by Edd Barrett many many moons ago. annoying window placement and race, found in c2k8 by todd, fix by oga! lots of feedback from todd and oga - thanks! "commit that bad boy" oga@
Diffstat (limited to 'group.c')
-rw-r--r--group.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/group.c b/group.c
index 0c37939..0929b49 100644
--- a/group.c
+++ b/group.c
@@ -16,7 +16,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $Id: group.c,v 1.21 2009/01/15 00:32:35 okan Exp $
+ * $Id: group.c,v 1.22 2009/01/16 15:24:14 okan Exp $
*/
#include "headers.h"
@@ -99,7 +99,7 @@ _group_show(struct group_ctx *gc)
* top-to-bottom.
*/
TAILQ_FOREACH(cc, &gc->clients, group_entry) {
- winlist[gc->highstack - cc->stackingorder] = cc->pwin;
+ winlist[gc->highstack - cc->stackingorder] = cc->win;
client_unhide(cc);
}