author | kergoth <kergoth> | 2003-04-26 15:26:36 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-04-26 15:26:36 (UTC) |
commit | e434f5a8dacef2d86b37d44b9ba7ffa713abaae7 (patch) (side-by-side diff) | |
tree | 7053cd94210f6410b247cac42bb1c0c895a3a09d | |
parent | dd4f6b36681a28f785cf0923b0f9fc58ebe9a3bf (diff) | |
download | opie-e434f5a8dacef2d86b37d44b9ba7ffa713abaae7.zip opie-e434f5a8dacef2d86b37d44b9ba7ffa713abaae7.tar.gz opie-e434f5a8dacef2d86b37d44b9ba7ffa713abaae7.tar.bz2 |
Change default font for large screen sizes to vera/16 rather than vera/18.
-rw-r--r-- | library/qpeapplication.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index f4bfda9..e5da48c 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp @@ -522,9 +522,9 @@ QPEApplication::QPEApplication( int & argc, char **argv, Type t ) AppLnk::setSmallIconSize( 10 ); AppLnk::setBigIconSize( 28 ); } else if ( dw > 600 ) { - setFont( QFont( "vera", 18 ) ); + setFont( QFont( "vera", 16 ) ); AppLnk::setSmallIconSize( 24 ); AppLnk::setBigIconSize( 48 ); } else if ( dw > 200 ) { |