Change default wobbliness to something more subtle.
svn path=/trunk/KDE/kdebase/workspace/; revision=827266
This commit is contained in:
parent
8556f99b8a
commit
2ac20938c4
2 changed files with 3 additions and 3 deletions
|
@ -191,7 +191,7 @@ WobblyWindowsEffect::WobblyWindowsEffect()
|
|||
QString settingsMode = conf.readEntry("Settings", "Auto");
|
||||
if (settingsMode != "Custom")
|
||||
{
|
||||
unsigned int wobblynessLevel = conf.readEntry("WobblynessLevel", 2);
|
||||
unsigned int wobblynessLevel = conf.readEntry("WobblynessLevel", 1);
|
||||
if (wobblynessLevel > 4)
|
||||
{
|
||||
kDebug() << "Wrong value for \"WobblynessLevel\" : " << wobblynessLevel;
|
||||
|
|
|
@ -58,11 +58,11 @@ void WobblyWindowsEffectConfig::load()
|
|||
KConfigGroup conf = EffectsHandler::effectConfig("Wobbly");
|
||||
bool change = true;
|
||||
|
||||
unsigned int wobblynessLevel = 2;
|
||||
unsigned int wobblynessLevel = 1;
|
||||
QString settingsMode = conf.readEntry("Settings", "Auto");
|
||||
if (settingsMode != "Custom")
|
||||
{
|
||||
wobblynessLevel = conf.readEntry("WobblynessLevel", 2);
|
||||
wobblynessLevel = conf.readEntry("WobblynessLevel", 1);
|
||||
change = false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue