┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphincolumnwidget.cpp
diff options
context:
space:
mode:
authorShaun Reich <[email protected]>2009-02-09 11:23:40 +0000
committerShaun Reich <[email protected]>2009-02-09 11:23:40 +0000
commit8f6e9890fd0f79c7f8215fad7ca045b7ccbecb87 (patch)
tree949e59054f916679e6bca5489e6fca069d29c33f /src/dolphincolumnwidget.cpp
parentaf808a7ba31b4aa76b7e4799bf074f974098bd7c (diff)
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
Diffstat (limited to 'src/dolphincolumnwidget.cpp')
-rw-r--r--src/dolphincolumnwidget.cpp3
1 files changed, 2 insertions, 1 deletions
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&)),