SVN commit 764492 by andrunko: Fixed crash when using KDirOperator. M +1 -1 kdiroperator.cpp --- trunk/KDE/kdelibs/kfile/kdiroperator.cpp #764491:764492 @@ -1178,7 +1178,7 @@ } } } - else if (event->type() == QEvent::MouseButtonRelease) { + else if ((event->type() == QEvent::MouseButtonRelease) && (d->preview != 0)) { const QModelIndex hoveredIndex = d->itemView->indexAt(d->itemView->viewport()->mapFromGlobal(QCursor::pos())); const QModelIndex focusedIndex = d->itemView->selectionModel() ? d->itemView->selectionModel()->currentIndex() : QModelIndex();