From: Peter Penz Date: Sun, 4 Nov 2007 18:50:22 +0000 (+0000) Subject: KrushDays-fix: fixed issue that F6 does not apply the focus to the URL navigator... X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/commitdiff_plain/7f94bd652080ed18cf41cbb08beb1dea4d82afe6 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 --- 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()