author | kergoth <kergoth> | 2003-04-23 19:08:19 (UTC) |
---|---|---|
committer | kergoth <kergoth> | 2003-04-23 19:08:19 (UTC) |
commit | f99c8e576030a7e8e83aa850b09ec69cc6217bb1 (patch) (side-by-side diff) | |
tree | c2b4f3cf2c5858bc14c5a72be71f1b4b4e276aad /library | |
parent | 3d0eacfe335f073b2ece67d762e8d182a6329303 (diff) | |
download | opie-f99c8e576030a7e8e83aa850b09ec69cc6217bb1.zip opie-f99c8e576030a7e8e83aa850b09ec69cc6217bb1.tar.gz opie-f99c8e576030a7e8e83aa850b09ec69cc6217bb1.tar.bz2 |
Change the default font to Bitstream Vera rather than Helvetica. See http://openzaurus.org/mirror/ for the qpfs in tar.gz and ipk format.
-rw-r--r-- | library/opie-common.control | 4 | ||||
-rw-r--r-- | library/qpeapplication.cpp | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/library/opie-common.control b/library/opie-common.control index 52048a3..1cdd465 100644 --- a/library/opie-common.control +++ b/library/opie-common.control @@ -6,4 +6,4 @@ Maintainer: Project Opie <opie@handhelds.org> Architecture: arm -Version: $QPE_VERSION-$SUB_VERSION.2 -Depends: libqpe1, qte-fonts, qpf-helvetica +Version: $QPE_VERSION-$SUB_VERSION.3 +Depends: libqpe1, qte-fonts, qpf-bitstream-vera Replaces: opie-base diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp index 7f8299a..f4bfda9 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp @@ -520,3 +520,3 @@ QPEApplication::QPEApplication( int & argc, char **argv, Type t ) if ( dw < 200 ) { - setFont( QFont( "helvetica", 8 ) ); + setFont( QFont( "vera", 8 ) ); AppLnk::setSmallIconSize( 10 ); @@ -525,3 +525,3 @@ QPEApplication::QPEApplication( int & argc, char **argv, Type t ) else if ( dw > 600 ) { - setFont( QFont( "helvetica", 18 ) ); + setFont( QFont( "vera", 18 ) ); AppLnk::setSmallIconSize( 24 ); @@ -530,3 +530,3 @@ QPEApplication::QPEApplication( int & argc, char **argv, Type t ) else if ( dw > 200 ) { - setFont( QFont( "helvetica", 10 ) ); + setFont( QFont( "vera", 10 ) ); AppLnk::setSmallIconSize( 14 ); @@ -1038,3 +1038,3 @@ void QPEApplication::applyStyle() if ( nostyle & Opie::Force_Font ) { - ff = "Helvetica"; + ff = "Vera"; fs = 10; |