From: Peter Penz Date: Thu, 25 Feb 2010 20:54:02 +0000 (+0000) Subject: Request the activation of the view, even if the column is marked as active already... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/08f93a673d519de4cb6ecc35b151f674366fbb3d Request the activation of the view, even if the column is marked as active already: The activation state of a column is independent from from the activation state of the view. This fixes the regression that items for inactive views containing columns get triggered. BUG: 227472 svn path=/trunk/KDE/kdebase/apps/; revision=1096114 --- diff --git a/src/dolphincolumnview.cpp b/src/dolphincolumnview.cpp index c89a645de..11ecf8aa7 100644 --- a/src/dolphincolumnview.cpp +++ b/src/dolphincolumnview.cpp @@ -388,6 +388,7 @@ void DolphinColumnView::slotEntered(const QModelIndex& index) void DolphinColumnView::requestActivation() { + m_container->m_controller->requestActivation(); if (!m_active) { m_container->requestActivation(this); selectionModel()->clear();