1
mirror of https://invent.kde.org/network/falkon.git synced 2024-12-20 02:36:34 +01:00

Show navigation bar when calling openLocation() in full screen mode.

- Closes #1464
This commit is contained in:
S. Razi Alavizadeh 2014-12-25 00:10:30 +03:30
parent 94afd29d67
commit 393009f4d1

View File

@ -1093,6 +1093,10 @@ void BrowserWindow::openFile()
void BrowserWindow::openLocation()
{
if (isFullScreen()) {
showNavigationWithFullScreen();
}
locationBar()->setFocus();
locationBar()->selectAll();
}