From 0dc00b1a83242e8b195d023475d8f140bff9d559 Mon Sep 17 00:00:00 2001 From: Marco Peereboom Date: Thu, 15 Jan 2009 03:50:26 +0000 Subject: [PATCH] Yay fix old x apps that send events in different order. This fixes like xclock & xcalc etc. --- scrotwm.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scrotwm.c b/scrotwm.c index 20c9e0e..970c6e8 100644 --- a/scrotwm.c +++ b/scrotwm.c @@ -908,6 +908,9 @@ maprequest(XEvent *e) { DNPRINTF(SWM_D_EVENT, "maprequest: window: %lu\n", e->xmaprequest.window); + + manage_window(e->xmaprequest.window); + stack(); } void -- 1.7.10.4