Rotate windows on all desktops by default. Keeping them in place brakes the stacking order during animation.

BUG: 185019

svn path=/trunk/KDE/kdebase/workspace/; revision=928985
icc-effect-5.14.5
Martin Gräßlin 2009-02-20 14:04:41 +00:00
parent 445f021b06
commit 75346f126b
2 changed files with 3 additions and 3 deletions

View File

@ -54,7 +54,7 @@ void CubeSlideEffect::reconfigure( ReconfigureFlags )
timeLine.setCurveShape( TimeLine::EaseInOutCurve );
timeLine.setDuration( rotationDuration );
dontSlidePanels = conf.readEntry( "DontSlidePanels", true );
dontSlideStickyWindows = conf.readEntry( "DontSlideStickyWindows", true );
dontSlideStickyWindows = conf.readEntry( "DontSlideStickyWindows", false );
}
void CubeSlideEffect::prePaintScreen( ScreenPrePaintData& data, int time)

View File

@ -58,7 +58,7 @@ void CubeSlideEffectConfig::load()
int duration = conf.readEntry( "RotationDuration", 0 );
bool dontSlidePanels = conf.readEntry( "DontSlidePanels", true );
bool dontSlideStickyWindows = conf.readEntry( "DontSlideStickyWindows", true );
bool dontSlideStickyWindows = conf.readEntry( "DontSlideStickyWindows", false );
m_ui->rotationDurationSpin->setValue( duration );
m_ui->dontSlidePanelsBox->setChecked( dontSlidePanels );
@ -85,7 +85,7 @@ void CubeSlideEffectConfig::defaults()
{
m_ui->rotationDurationSpin->setValue( 0 );
m_ui->dontSlidePanelsBox->setChecked( true );
m_ui->dontSlideStickyWindowsBox->setChecked( true );
m_ui->dontSlideStickyWindowsBox->setChecked( false );
emit changed(true);
}