From: Shaun Reich Date: Mon, 9 Feb 2009 11:23:40 +0000 (+0000) Subject: The Column Widget would not disconnect it's connection to request a tab(seen with... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/8f6e9890fd0f79c7f8215fad7ca045b7ccbecb87 The Column Widget would not disconnect it's connection to request a tab(seen with a middle-click on a folder). So it would actually open 2 or more tabs, but only in the Column View mode. svn path=/trunk/KDE/kdebase/apps/; revision=923757 --- diff --git a/src/dolphincolumnwidget.cpp b/src/dolphincolumnwidget.cpp index d2701bdec..3fbf92100 100644 --- a/src/dolphincolumnwidget.cpp +++ b/src/dolphincolumnwidget.cpp @@ -544,7 +544,8 @@ void DolphinColumnWidget::activate() void DolphinColumnWidget::deactivate() { clearFocus(); - + disconnect(this, SIGNAL(clicked(const QModelIndex&)), + m_view->m_controller, SLOT(requestTab(const QModelIndex&))); disconnect(this, SIGNAL(clicked(const QModelIndex&)), this, SLOT(slotClicked(const QModelIndex&))); disconnect(this, SIGNAL(doubleClicked(const QModelIndex&)),