From 8f6e9890fd0f79c7f8215fad7ca045b7ccbecb87 Mon Sep 17 00:00:00 2001 From: Shaun Reich Date: Mon, 9 Feb 2009 11:23:40 +0000 Subject: [PATCH] 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 --- src/dolphincolumnwidget.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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&)), -- 2.47.3