1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-11 01:22:10 +01:00

Location/Search Bar: Always open new active window with Alt+Enter

- in Web Search Bar it can be also opened with middle click on
  magnifying glass button
This commit is contained in:
nowrep 2012-09-06 12:02:03 +02:00
parent 55845ab4df
commit ba7f919cd5
3 changed files with 3 additions and 2 deletions

View File

@ -13,6 +13,7 @@ Version 1.3.5
* remember last section in preferences * remember last section in preferences
* much more tabs now fits into tabbar without overflowing into tab buttons * much more tabs now fits into tabbar without overflowing into tab buttons
* smarter address bar completer will show better search results * smarter address bar completer will show better search results
* support for bookmarks manager and sidebar drag&drop managing bookmarks
* new User Agent manager lets you set User Agent per site * 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 restore session page lets you choose which tabs you want to restore
* new scheme handler for file protocol allows browsing through directories * new scheme handler for file protocol allows browsing through directories

View File

@ -479,7 +479,7 @@ void LocationBar::keyPressEvent(QKeyEvent* event)
break; break;
case Qt::AltModifier: case Qt::AltModifier:
p_QupZilla->tabWidget()->addView(createUrl(), qzSettings->newTabPosition); p_QupZilla->tabWidget()->addView(createUrl());
m_holdingAlt = false; m_holdingAlt = false;
break; break;

View File

@ -199,7 +199,7 @@ void WebSearchBar::search()
void WebSearchBar::searchInNewTab() void WebSearchBar::searchInNewTab()
{ {
p_QupZilla->weView()->setFocus(); p_QupZilla->weView()->setFocus();
p_QupZilla->tabWidget()->addView(m_searchManager->searchUrl(m_activeEngine, text()), qzSettings->newTabPosition); p_QupZilla->tabWidget()->addView(m_searchManager->searchUrl(m_activeEngine, text()));
} }
void WebSearchBar::completeMenuWithAvailableEngines(QMenu* menu) void WebSearchBar::completeMenuWithAvailableEngines(QMenu* menu)