diff options
| author | Peter Penz <[email protected]> | 2008-04-01 16:25:25 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2008-04-01 16:25:25 +0000 |
| commit | afb9e2d1323f269bd410265c08212643c612a3b3 (patch) | |
| tree | 9f08b5f6db08be809fd3b540ee598a79049a8890 | |
| parent | 4c8ebcf6541762e46c894af0afb50f5a5dbcc651 (diff) | |
let the selection toggle fade in faster (based on user feedback from http://ppenz.blogspot.com/2008/04/selecting-items.html)
svn path=/trunk/KDE/kdebase/apps/; revision=792581
| -rw-r--r-- | src/selectiontoggle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/selectiontoggle.cpp b/src/selectiontoggle.cpp index fa10c7559..14ec04840 100644 --- a/src/selectiontoggle.cpp +++ b/src/selectiontoggle.cpp @@ -182,7 +182,7 @@ void SelectionToggle::startFading() Q_ASSERT(m_fadingTimeLine == 0); const bool animate = KGlobalSettings::graphicEffectsLevel() & KGlobalSettings::SimpleAnimationEffects; - const int duration = animate ? 1500 : 1; + const int duration = animate ? 600 : 1; m_fadingTimeLine = new QTimeLine(duration, this); connect(m_fadingTimeLine, SIGNAL(frameChanged(int)), |
