diff options
| author | Peter Penz <[email protected]> | 2008-03-17 20:29:44 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2008-03-17 20:29:44 +0000 |
| commit | 15ebb0371351a5998e95fe0beb069c29998ceb27 (patch) | |
| tree | d346b5a3310f0eaec807bd1c5d489930c7e3c8f2 /src | |
| parent | 8d0fda61c8312ccaa5ee1f77fd8808e8bdedba36 (diff) | |
because of the recent Information Panel fixes it is now possible again that previews are shown for the inactive views too
svn path=/trunk/KDE/kdebase/apps/; revision=786729
Diffstat (limited to 'src')
| -rw-r--r-- | src/dolphinview.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/dolphinview.cpp b/src/dolphinview.cpp index f5a972d37..9887b9628 100644 --- a/src/dolphinview.cpp +++ b/src/dolphinview.cpp @@ -866,11 +866,9 @@ void DolphinView::emitContentsMoved() void DolphinView::showHoverInformation(const KFileItem& item) { - if (hasSelection() || !m_active) { - return; + if (!hasSelection()) { + emit requestItemInfo(item); } - - emit requestItemInfo(item); } void DolphinView::clearHoverInformation() |
