diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-04-03 03:25:10 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-04-03 03:25:10 -0500 |
commit | d4181009884b7ec06880a2335e95e6e355c89c93 (patch) | |
tree | dcffd326fd98f91c98e2472fa186c3b3586a9c93 /kdesktop/tdefileividesktop.cpp | |
parent | 6b44e844a34561491c6a2e32cb4888a85b1416b9 (diff) | |
download | tdebase-d4181009884b7ec06880a2335e95e6e355c89c93.tar.gz tdebase-d4181009884b7ec06880a2335e95e6e355c89c93.zip |
Force redraw of desktop shadows
This resolves Bug 1807
Do not abort DrKonqi if a library file could not be opened for SCM analysis
Diffstat (limited to 'kdesktop/tdefileividesktop.cpp')
-rw-r--r-- | kdesktop/tdefileividesktop.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/kdesktop/tdefileividesktop.cpp b/kdesktop/tdefileividesktop.cpp index 18ba4c156..bf9aa074c 100644 --- a/kdesktop/tdefileividesktop.cpp +++ b/kdesktop/tdefileividesktop.cpp @@ -150,7 +150,9 @@ void KFileIVIDesktop::drawShadowedText( TQPainter *p, const TQColorGroup &cg ) int textY = textRect( FALSE ).y(); int align = ((TDEIconView *) iconView())->itemTextPos() == TQIconView::Bottom ? AlignHCenter : AlignAuto; - bool rebuild = shouldUpdateShadow(isSelected()); + // FIXME + // Work around incorrect shadow position detailed in Bug 1807 + bool rebuild = true; // shouldUpdateShadow(isSelected()); KDesktopShadowSettings *settings = (KDesktopShadowSettings *) (m_shadow->shadowSettings()); |