Revert part of the change done for #47757, using a shortcut without

a modifier for KDE-style Alt+Tab simply doesn't make sense.
BUG: 103262

svn path=/trunk/kdebase/kwin/; revision=404069
This commit is contained in:
Luboš Luňák 2005-04-08 14:31:00 +00:00
parent 6e884b34c6
commit 3fd88cc165

View file

@ -1,4 +1,4 @@
/********x*********************************************************
/*****************************************************************
KWin - the KDE window manager
This file is part of the KDE project.
@ -739,9 +739,7 @@ void Workspace::slotWalkThroughWindows()
else
// if the shortcut has no modifiers, don't show the tabbox,
// don't grab, but simply go to the next window
// use the CDE style, because with KDE style it would cycle
// between the active and previously active window
CDEWalkThroughWindows( true );
KDEOneStepThroughWindows( true );
}
}
@ -765,7 +763,7 @@ void Workspace::slotWalkBackThroughWindows()
}
else
{
CDEWalkThroughWindows( false );
KDEOneStepThroughWindows( false );
}
}
}