summaryrefslogtreecommitdiff
path: root/framework
diff options
context:
space:
mode:
authorIvan Timofeev <timofeev.i.s@gmail.com>2012-04-03 20:40:14 +0400
committerIvan Timofeev <timofeev.i.s@gmail.com>2012-04-03 20:46:12 +0400
commit4e24d472f693c458b17d2ba1fb6c883aaf9c3b27 (patch)
treebb9f148cee36a25b82e5f290c650fbd65a9eda8d /framework
parent643a582793c85c3d5e3cd5cfc831d895036ef93d (diff)
fix the initial font size in the Start Center
Recover the code that was for some reason removed in commit 78e8d5f0d62f910b8561a1c4fd7ebd8ae4cfb9f8.
Diffstat (limited to 'framework')
-rw-r--r--framework/source/services/backingwindow.cxx3
1 files changed, 3 insertions, 0 deletions
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 );
}