Backport rev 1002067: Fixing a copy&paste error. Screen edges kcm should read cube settings for cube actions, not desktop grid settings.
CCBUG: 201362 svn path=/branches/KDE/4.3/kdebase/workspace/; revision=1002069
This commit is contained in:
parent
be1f18ab35
commit
5617c815d2
1 changed files with 3 additions and 3 deletions
|
@ -271,21 +271,21 @@ void KWinScreenEdgesConfig::monitorLoad()
|
|||
KConfigGroup cubeConfig( m_config, "Effect-Cube" );
|
||||
list.clear();
|
||||
list.append( int( ElectricNone ) );
|
||||
list = gridConfig.readEntry( "BorderActivate", list );
|
||||
list = cubeConfig.readEntry( "BorderActivate", list );
|
||||
foreach( int i, list )
|
||||
{
|
||||
monitorChangeEdge( ElectricBorder( i ), int( Cube ) );
|
||||
}
|
||||
list.clear();
|
||||
list.append( int( ElectricNone ) );
|
||||
list = gridConfig.readEntry( "BorderActivateCylinder", list );
|
||||
list = cubeConfig.readEntry( "BorderActivateCylinder", list );
|
||||
foreach( int i, list )
|
||||
{
|
||||
monitorChangeEdge( ElectricBorder( i ), int( Cylinder ) );
|
||||
}
|
||||
list.clear();
|
||||
list.append( int( ElectricNone ) );
|
||||
list = gridConfig.readEntry( "BorderActivateSphere", list );
|
||||
list = cubeConfig.readEntry( "BorderActivateSphere", list );
|
||||
foreach( int i, list )
|
||||
{
|
||||
monitorChangeEdge( ElectricBorder( i ), int( Sphere ) );
|
||||
|
|
Loading…
Reference in a new issue