summaryrefslogtreecommitdiff
authorsandman <sandman>2002-10-13 22:05:30 (UTC)
committer sandman <sandman>2002-10-13 22:05:30 (UTC)
commitc94a9c3a93907d8a0c034e5b4c6d0a768d9fea7c (patch) (side-by-side diff)
tree0b4610958aa515bd4b8aa87b070514d5a860dd3a
parent49269558da49b0429e4b13f4ed8ac2b3ac4f3513 (diff)
downloadopie-c94a9c3a93907d8a0c034e5b4c6d0a768d9fea7c.zip
opie-c94a9c3a93907d8a0c034e5b4c6d0a768d9fea7c.tar.gz
opie-c94a9c3a93907d8a0c034e5b4c6d0a768d9fea7c.tar.bz2
default font size should be 10pt .. 12pt is too big for 320x240
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--library/qpeapplication.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/qpeapplication.cpp b/library/qpeapplication.cpp
index 2432b65..65fac84 100644
--- a/library/qpeapplication.cpp
+++ b/library/qpeapplication.cpp
@@ -456,49 +456,49 @@ static void setMic( int t = 0, int percent = -1 )
a QApplication, passing \a argc, \a argv, and \a t.
For applications, \a t should be the default, GuiClient. Only
the Qtopia server passes GuiServer.
*/
QPEApplication::QPEApplication( int & argc, char **argv, Type t )
: QApplication( argc, argv, t )
{
d = new QPEApplicationData;
d->loadTextCodecs();
d->loadImageCodecs();
int dw = desktop() ->width();
qWarning( "Width %d", dw );
if ( dw < 200 ) {
setFont( QFont( "helvetica", 8 ) );
AppLnk::setSmallIconSize( 10 );
AppLnk::setBigIconSize( 28 );
}
else if ( dw > 600 ) {
setFont( QFont( "helvetica", 12 ) );
AppLnk::setSmallIconSize( 24 );
AppLnk::setBigIconSize( 48 );
}
else if ( dw > 200 ) {
- setFont( QFont( "helvetica", 12 ) );
+ setFont( QFont( "helvetica", 10 ) );
AppLnk::setSmallIconSize( 16 );
AppLnk::setBigIconSize( 32 );
}
QMimeSourceFactory::setDefaultFactory( new ResourceMimeFactory );
connect( this, SIGNAL( lastWindowClosed() ), this, SLOT( hideOrQuit() ) );
#if defined(Q_WS_QWS) && !defined(QT_NO_COP)
QString qcopfn( "/tmp/qcop-msg-" );
qcopfn += QString( argv[ 0 ] ); // append command name
QFile f( qcopfn );
if ( f.open( IO_ReadOnly ) ) {
flock( f.handle(), LOCK_EX );
}
sysChannel = new QCopChannel( "QPE/System", this );
connect( sysChannel, SIGNAL( received( const QCString &, const QByteArray & ) ),
this, SLOT( systemMessage( const QCString &, const QByteArray & ) ) );
QCString channel = QCString( argv[ 0 ] );
channel.replace( QRegExp( ".*/" ), "" );