From 2c1ca75e3a37f5711417f6cbe02a89b210a88b6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Thu, 17 May 2007 17:25:08 +0000 Subject: [PATCH] Oops, there should not be zero screens. svn path=/trunk/KDE/kdebase/workspace/; revision=665694 --- workspace.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workspace.cpp b/workspace.cpp index c2ee51326a..9316cadaa9 100644 --- a/workspace.cpp +++ b/workspace.cpp @@ -1606,7 +1606,7 @@ void Workspace::sendClientToDesktop( Client* c, int desk, bool dont_activate ) int Workspace::numScreens() const { if( !options->xineramaEnabled ) - return 0; + return 1; return qApp->desktop()->numScreens(); }