author | sandman <sandman> | 2002-12-03 22:51:55 (UTC) |
---|---|---|
committer | sandman <sandman> | 2002-12-03 22:51:55 (UTC) |
commit | 56d74fadbb911e169461a9bbefa664cd1ab6b129 (patch) (side-by-side diff) | |
tree | 8dd94e6043c5ca70ed30141967fa683078ea4e9a /library | |
parent | b840b9c453badfec16deffeffae5337320bff5a7 (diff) | |
download | opie-56d74fadbb911e169461a9bbefa664cd1ab6b129.zip opie-56d74fadbb911e169461a9bbefa664cd1ab6b129.tar.gz opie-56d74fadbb911e169461a9bbefa664cd1ab6b129.tar.bz2 |
why didn't anybody notice this ? If you change the font, all currently open
applications don't change their font -- that's not normal - that's a bug :)
Fixed now
-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 c782837..7cbda92 100644 --- a/library/qpeapplication.cpp +++ b/library/qpeapplication.cpp @@ -980,33 +980,33 @@ void QPEApplication::applyStyle() if ( dec != d->decorationName ) { qwsSetDecoration( new QPEDecoration( dec ) ); d->decorationName = dec; } // Font QString ff = config.readEntry( "FontFamily", font().family() ); int fs = config.readNumEntry( "FontSize", font().pointSize() ); // don't set a custom font if ( nostyle & 0x02 ) { ff = "Helvetica"; fs = 10; } - setFont( QFont(ff, fs) ); + setFont ( QFont ( ff, fs ), true ); // revert to global blocking policy ... opie_block_style = config. readBoolEntry ( "ForceStyle", false ) ? 0xff : 0x00; opie_block_style -= nostyle; } void QPEApplication::systemMessage( const QCString& msg, const QByteArray& data ) { #ifdef Q_WS_QWS QDataStream stream( data, IO_ReadOnly ); if ( msg == "applyStyle()" ) { applyStyle(); } else if ( msg == "setDefaultRotation(int)" ) { if ( type() == GuiServer ) { int r; |