From kde-commits Sat May 05 15:19:29 2007 From: Robert Knight Date: Sat, 05 May 2007 15:19:29 +0000 To: kde-commits Subject: koffice/libs/kofficecore Message-Id: <1178378369.590049.31157.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=117837839719969 SVN commit 661441 by knight: Actually use the dock widget font size setting read from the config file. Caught by Thomas Z. M +1 -0 KoMainWindow.cpp --- trunk/koffice/libs/kofficecore/KoMainWindow.cpp #661440:661441 @@ -1788,6 +1788,7 @@ KConfigGroup group( KGlobal::config(), "GUI" ); QFont dockWidgetFont = KGlobalSettings::generalFont(); double pointSize = group.readEntry("palettefontsize", dockWidgetFont.pointSize()); + dockWidgetFont.setPointSizeF(pointSize); dockWidget->setFont(dockWidgetFont); return dockWidget;