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;