diff options
| author | Peter Penz <[email protected]> | 2007-11-04 18:50:22 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2007-11-04 18:50:22 +0000 |
| commit | 7f94bd652080ed18cf41cbb08beb1dea4d82afe6 (patch) | |
| tree | 41f8e573f736edaa544116a5c68ea4e630d87da7 /src | |
| parent | 87ba6b6e04e2a655d72575874fc2ab8fef37ad4c (diff) | |
KrushDays-fix: fixed issue that F6 does not apply the focus to the URL navigator when the navigator is already in the editable mode
svn path=/trunk/KDE/kdebase/apps/; revision=732773
Diffstat (limited to 'src')
| -rw-r--r-- | src/dolphinmainwindow.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp index ff6af9913..057ddce4f 100644 --- a/src/dolphinmainwindow.cpp +++ b/src/dolphinmainwindow.cpp @@ -917,7 +917,9 @@ void DolphinMainWindow::toggleEditLocation() void DolphinMainWindow::editLocation() { - m_activeViewContainer->urlNavigator()->setUrlEditable(true); + KUrlNavigator* navigator = m_activeViewContainer->urlNavigator(); + navigator->setUrlEditable(true); + navigator->setFocus(); } void DolphinMainWindow::adjustViewProperties() |
