[Xfce4-commits] r24050 - xfwm4/trunk/src
Olivier Fourdan
olivier at xfce.org
Wed Dec 6 07:47:50 CET 2006
Author: olivier
Date: 2006-12-06 06:47:50 +0000 (Wed, 06 Dec 2006)
New Revision: 24050
Modified:
xfwm4/trunk/src/placement.c
Log:
Auto-maximize regular windows only.
Modified: xfwm4/trunk/src/placement.c
===================================================================
--- xfwm4/trunk/src/placement.c 2006-12-05 22:27:40 UTC (rev 24049)
+++ xfwm4/trunk/src/placement.c 2006-12-06 06:47:50 UTC (rev 24050)
@@ -701,5 +701,8 @@
}
}
- clientAutoMaximize (c, full_w, full_h);
+ if (c->type & WINDOW_REGULAR_FOCUSABLE)
+ {
+ clientAutoMaximize (c, full_w, full_h);
+ }
}
More information about the Xfce4-commits
mailing list