the delay is an int not a real and is in ms

This commit is contained in:
Aaron Seigo 2012-01-27 15:10:36 +01:00
parent 6018fc0c35
commit 2213eac61a

View File

@ -539,7 +539,7 @@ void Theme::settingsChanged()
KConfigGroup cg = d->config();
d->setThemeName(cg.readEntry("name", ThemePrivate::defaultTheme), false);
cg = KConfigGroup(cg.config(), "PlasmaToolTips");
d->toolTipDelay = cg.readEntry("Delay", qreal(0.7));
d->toolTipDelay = cg.readEntry("Delay", 700);
}
void Theme::setThemeName(const QString &themeName)