Version: 0.10 (using KDE KDE 3.5.0) Installed from: Ubuntu Packages OS: Linux If Knode is open and no article of the article list is selected - the body window is white (without color). If I select an article the background gets colored. This appears after upgrading from KDE 3.4.3 to 3.5. Background and Alternate Background Colors are set.
SVN commit 490894 by vkrause: Fix bug #118521 (empty article viewer ignores background color setting). CCBUG: 118521 M +3 -0 articlewidget.cpp --- trunk/KDE/kdepim/knode/articlewidget.cpp #490893:490894 @@ -355,6 +355,9 @@ { disableActions(); mViewer->begin(); + mViewer->setUserStyleSheet( mCSSHelper->cssDefinitions( mFixedFontToggle->isChecked() ) ); + mViewer->write( mCSSHelper->htmlHead( mFixedFontToggle->isChecked() ) ); + mViewer->write( "</body></html>" ); mViewer->end(); }
SVN commit 490895 by vkrause: Backport SVN commit 490894 by vkrause for KDE 3.5.1: Fix bug #118521 (empty article viewer ignores background color setting). BUG: 118521 M +3 -0 articlewidget.cpp --- branches/KDE/3.5/kdepim/knode/articlewidget.cpp #490894:490895 @@ -352,6 +352,9 @@ { disableActions(); mViewer->begin(); + mViewer->setUserStyleSheet( mCSSHelper->cssDefinitions( mFixedFontToggle->isChecked() ) ); + mViewer->write( mCSSHelper->htmlHead( mFixedFontToggle->isChecked() ) ); + mViewer->write( "</body></html>" ); mViewer->end(); }
You need to log in before you can comment on or make changes to this bug.