diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-09-01 00:47:33 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-09-01 00:47:33 +0200 |
commit | 3b4d243c170ba45fdd1fc07cc24f3554c9e70857 (patch) | |
tree | 4782c2277ce76542787f522c97155f7941be9a82 /src/mainwindow.cpp | |
parent | This works as wrokaround for KIO missing implementation in DELETE & CUSTOM (diff) | |
download | rekonq-3b4d243c170ba45fdd1fc07cc24f3554c9e70857.tar.xz |
Let urlbar being usable also in fullscreen mode
BUG: 243900
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 5bacb699..11580f69 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -600,6 +600,10 @@ void MainWindow::setupPanels() void MainWindow::openLocation() { + if(isFullScreen()) + { + setWidgetsVisible(true); + } m_view->urlBar()->selectAll(); m_view->urlBar()->setFocus(); } |