From 4e24d472f693c458b17d2ba1fb6c883aaf9c3b27 Mon Sep 17 00:00:00 2001 From: Ivan Timofeev Date: Tue, 3 Apr 2012 20:40:14 +0400 Subject: fix the initial font size in the Start Center Recover the code that was for some reason removed in commit 78e8d5f0d62f910b8561a1c4fd7ebd8ae4cfb9f8. --- framework/source/services/backingwindow.cxx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'framework') diff --git a/framework/source/services/backingwindow.cxx b/framework/source/services/backingwindow.cxx index d930f772375b..ca0e9e7fd9a0 100644 --- a/framework/source/services/backingwindow.cxx +++ b/framework/source/services/backingwindow.cxx @@ -239,6 +239,9 @@ BackingWindow::BackingWindow( Window* i_pParent ) : maButtonImageSize.Width() += 12; maButtonImageSize.Height() += 12; + // set a slighly larger font than normal labels on the texts + maTextFont.SetSize( Size( 0, 11 ) ); + maTextFont.SetWeight( WEIGHT_NORMAL ); } -- cgit