From 628ceadb996cd87593c90057591ae6ab298db317 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20L=C3=BCbking?= Date: Thu, 13 Jan 2011 19:05:28 +0000 Subject: [PATCH] constrain number of virtual desktops BUG: 261665 svn path=/trunk/KDE/kdebase/workspace/; revision=1214238 --- workspace.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/workspace.cpp b/workspace.cpp index 079e09a2cd..e624230d41 100644 --- a/workspace.cpp +++ b/workspace.cpp @@ -79,6 +79,7 @@ namespace KWin { extern int screen_number; +static const int KWIN_MAX_NUMBER_DESKTOPS = 20; Workspace* Workspace::_self = 0; @@ -1735,7 +1736,9 @@ void Workspace::previousDesktop() */ void Workspace::setNumberOfDesktops( int n ) { - if( n == numberOfDesktops() ) + if ( n > KWIN_MAX_NUMBER_DESKTOPS ) + n = KWIN_MAX_NUMBER_DESKTOPS; + if( n < 1 || n == numberOfDesktops() ) return; int old_number_of_desktops = numberOfDesktops(); desktopCount_ = n;