From 8366e220bf46fb9032e40854c70512adb410bdd4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Fri, 28 Jun 2002 20:28:33 +0000 Subject: [PATCH] NETWM says we have to set this property to (0,0) if we don't support it svn path=/trunk/kdebase/kwin/; revision=163694 --- workspace.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/workspace.cpp b/workspace.cpp index bf7e839b38..c121eb60a7 100644 --- a/workspace.cpp +++ b/workspace.cpp @@ -440,6 +440,9 @@ void Workspace::init() updateClientArea(); raiseElectricBorders(); + + // NETWM spec says we have to set it to (0,0) if we don't support it + rootInfo->setDesktopViewport( 1, NETPoint()); } Workspace::~Workspace()