From bf59764a4685c4bef029eddfa75d7496d2a91ae0 Mon Sep 17 00:00:00 2001 From: marha Date: Tue, 10 Apr 2012 08:55:38 +0200 Subject: Solved problem when specifying -fullscreen on command line because default resizing behaviour was changed to resize (which is not allowed in fullscreen) --- xorg-server/hw/xwin/winprocarg.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xorg-server/hw/xwin/winprocarg.c b/xorg-server/hw/xwin/winprocarg.c index bb7f2fd94..c391dae7c 100644 --- a/xorg-server/hw/xwin/winprocarg.c +++ b/xorg-server/hw/xwin/winprocarg.c @@ -535,6 +535,8 @@ ddxProcessArgument(int argc, char *argv[], int i) screenInfoPtr->fMultipleMonitors = FALSE; #endif screenInfoPtr->fFullScreen = TRUE; + // resizing is not allowed in full screen so change the default to not allowed + screenInfoPtr->iResizeMode=notAllowed; /* Indicate that we have processed this argument */ return 1; -- cgit v1.2.3