diff options
| author | Peter Penz <[email protected]> | 2007-10-09 21:10:17 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-10-09 21:10:17 +0000 |
| commit | 1d4cfd16fd5ceb8f37400d4890807e3c56619971 (patch) | |
| tree | f2d6cf306175a65ed61ccd91474dced063169405 /src/dolphincolumnview.cpp | |
| parent | 0c1d1c42f4abeaa03522b3059c485788276464f7 (diff) | |
column view fixes:
* assure that the history does not get messed up when changing the focus to an existing column
* fix issue that the status bar does not get updated when the focus is changed between the columns
svn path=/trunk/KDE/kdebase/apps/; revision=723519
Diffstat (limited to 'src/dolphincolumnview.cpp')
| -rw-r--r-- | src/dolphincolumnview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dolphincolumnview.cpp b/src/dolphincolumnview.cpp index fac35a0be..e8b75c532 100644 --- a/src/dolphincolumnview.cpp +++ b/src/dolphincolumnview.cpp @@ -263,12 +263,14 @@ QModelIndex DolphinColumnView::moveCursor(CursorAction cursorAction, Qt::Keyboar case MoveLeft: if (m_index > 0) { setActiveColumnIndex(m_index - 1); + m_controller->triggerUrlChangeRequest(activeColumn()->url()); } break; case MoveRight: if (m_index < m_columns.count() - 1) { setActiveColumnIndex(m_index + 1); + m_controller->triggerUrlChangeRequest(m_columns[m_index]->url()); } break; @@ -426,8 +428,6 @@ void DolphinColumnView::setActiveColumnIndex(int index) m_index = index; m_columns[m_index]->setActive(true); - m_controller->setUrl(m_columns[m_index]->url()); - assureVisibleActiveColumn(); } |
