-rw-r--r-- | korganizer/navigatorbar.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/korganizer/navigatorbar.cpp b/korganizer/navigatorbar.cpp index 2b8fd4f..7ba97c8 100644 --- a/korganizer/navigatorbar.cpp +++ b/korganizer/navigatorbar.cpp | |||
@@ -63,8 +63,14 @@ NavigatorBar::NavigatorBar( const QDate & date, QWidget *parent, const char *nam | |||
63 | topLayout->addWidget( mCtrlFrame ); | 63 | topLayout->addWidget( mCtrlFrame ); |
64 | 64 | ||
65 | QFont tfont = KGlobalSettings::generalFont();//font(); | 65 | QFont tfont = KGlobalSettings::generalFont();//font(); |
66 | if ( QApplication::desktop()->width() >= 480 ) | 66 | int add = 0; |
67 | tfont.setPointSize(tfont.pointSize()+2); | 67 | if ( QApplication::desktop()->width() >= 480 ) { |
68 | add = 2; | ||
69 | if ( QString ( name ) == QString("useBigPixmaps") ) | ||
70 | add += 2; | ||
71 | } | ||
72 | if ( add ) | ||
73 | tfont.setPointSize(tfont.pointSize()+add); | ||
68 | tfont.setBold(true); | 74 | tfont.setBold(true); |
69 | 75 | ||
70 | bool isRTL = KOGlobals::self()->reverseLayout(); | 76 | bool isRTL = KOGlobals::self()->reverseLayout(); |