1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-21 09:42:10 +02:00

Fixed navigation keys not working right after closing search bar

- keys PageUp, PageDown, Space and arrows

closes #530
This commit is contained in:
nowrep 2012-08-27 16:01:22 +02:00
parent 1e5b7d92cd
commit 4f3c3cdcc4
3 changed files with 7 additions and 5 deletions

View File

@ -11,11 +11,13 @@ Version 1.3.5
* Save x as ... actions will always show file dialog
* possibility to choose to use external download manager on every download
* remember last section in preferences
* much more tabs now fits into tabbar without overflowing into tab buttons
* smarter address bar completer will show better search results
* new User Agent manager lets you set User Agent per site
* new restore session page lets you choose which tabs you want to restore
* new scheme handler for file protocol allows browsing through directories
* new option to show loading progress in address bar
* new option to hide close button on tabs
* fixed visibility of navigation bar in fullscreen
* fixed bad position of add tab button when there is a lot of tabs
* fixed gui with RTL languages

View File

@ -71,7 +71,7 @@ void History::addHistoryEntry(const QUrl &url, QString title)
if (url.scheme() == "qupzilla" || url.scheme() == "about" || url.isEmpty()) {
return;
}
if (title == "") {
if (title.isEmpty()) {
title = tr("No Named Page");
}

View File

@ -62,10 +62,10 @@ void SearchToolBar::focusSearchLine()
void SearchToolBar::hide()
{
searchText("");
p_QupZilla->weView()->setFocus();
AnimatedWidget::hide();
searchText(QString());
p_QupZilla->weView()->setFocus();
}
void SearchToolBar::findNext()
@ -102,7 +102,7 @@ void SearchToolBar::highlightChanged()
view->findText(ui->lineEdit->text(), m_findFlags | QWebPage::HighlightAllOccurrences);
}
else {
view->findText("", QWebPage::HighlightAllOccurrences);
view->findText(QString(), QWebPage::HighlightAllOccurrences);
}
}