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
This commit is contained in:
parent
445f021b06
commit
75346f126b
2 changed files with 3 additions and 3 deletions
|
@ -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)
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue