┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/dolphinview.cpp
diff options
context:
space:
mode:
authorPeter Penz <[email protected]>2009-08-29 19:35:59 +0000
committerPeter Penz <[email protected]>2009-08-29 19:35:59 +0000
commit625cfd274375614fb85100cf4adc06244ff16cf8 (patch)
tree01879c79ea229bddd65b20e0e70242633bd15330 /src/dolphinview.cpp
parent60d28ca5c92baeb6613ac87cad53a188bd3de6eb (diff)
- fix focus issue in column-view
- minor interface corrections svn path=/trunk/KDE/kdebase/apps/; revision=1017162
Diffstat (limited to 'src/dolphinview.cpp')
-rw-r--r--src/dolphinview.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dolphinview.cpp b/src/dolphinview.cpp
index bae7c40f9..6db79452c 100644
--- a/src/dolphinview.cpp
+++ b/src/dolphinview.cpp
@@ -1302,7 +1302,7 @@ void DolphinView::createView()
Q_ASSERT(view != 0);
view->installEventFilter(this);
view->viewport()->installEventFilter(this);
- setFocusProxy(view);
+
/* TODO: enable folder expanding again later
@@ -1357,6 +1357,7 @@ void DolphinView::createView()
connect(view->horizontalScrollBar(), SIGNAL(valueChanged(int)),
this, SLOT(emitContentsMoved()));
+ setFocusProxy(m_viewAccessor.layoutTarget());
m_topLayout->insertWidget(1, m_viewAccessor.layoutTarget());
}