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 | |
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 @@ -993,7 +993,7 @@ void QPEApplication::applyStyle() 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; |