From dea089ee3bbf27135d4c5482c535ed542bad3a63 Mon Sep 17 00:00:00 2001 From: Matthias Ettrich Date: Sun, 16 Jul 2000 15:02:36 +0000 Subject: [PATCH] send-to-desktop works again svn path=/trunk/kdebase/kwin/; revision=57321 --- workspace.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workspace.cpp b/workspace.cpp index 28b3cc0e71..9a308c5fff 100644 --- a/workspace.cpp +++ b/workspace.cpp @@ -2114,7 +2114,7 @@ void Workspace::desktopPopupAboutToShow() desk_popup->insertSeparator( -1 ); int id; for ( int i = 1; i <= numberOfDesktops(); i++ ) { - id = desk_popup->insertItem( QString("&%1 %2").arg(i).arg( desktopName(i) ) ); + id = desk_popup->insertItem( QString("&%1 %2").arg(i).arg( desktopName(i) ), i ); if ( popup_client && !popup_client->isSticky() && popup_client->desktop() == i ) desk_popup->setItemChecked( id, TRUE ); } @@ -2522,7 +2522,7 @@ bool Workspace::keyPressMouseEmulation( XKeyEvent key ) */ void Workspace::slotResetAllClients() { - + ClientList stack = stacking_order; Client* active = activeClient(); block_focus = TRUE;