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
This commit is contained in:
Peter Penz 2008-03-17 20:29:44 +00:00
parent 8d0fda61c8
commit 15ebb03713

View file

@ -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()