From: Peter Penz Date: Sun, 23 Nov 2008 11:32:25 +0000 (+0000) Subject: Activate the column when a drag enter event has been received. This assures a consist... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/98d3d7479082ef6fc248a4124724226234571c72 Activate the column when a drag enter event has been received. This assures a consistent behavior in comparison when working with split views. svn path=/trunk/KDE/kdebase/apps/; revision=887919 --- diff --git a/src/dolphincolumnwidget.cpp b/src/dolphincolumnwidget.cpp index 93c9cc235..ab0c3783c 100644 --- a/src/dolphincolumnwidget.cpp +++ b/src/dolphincolumnwidget.cpp @@ -295,6 +295,7 @@ void DolphinColumnWidget::dragEnterEvent(QDragEnterEvent* event) { if (DragAndDropHelper::instance().isMimeDataSupported(event->mimeData())) { event->acceptProposedAction(); + requestActivation(); } }