From 2213eac61a7bda3640c34f135406c16e47b4a176 Mon Sep 17 00:00:00 2001 From: Aaron Seigo Date: Fri, 27 Jan 2012 15:10:36 +0100 Subject: [PATCH] the delay is an int not a real and is in ms --- theme.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/theme.cpp b/theme.cpp index 2b1d47a01..409abe1ff 100644 --- a/theme.cpp +++ b/theme.cpp @@ -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)