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
remotes/origin/falkon
nowrep 14 years ago
parent 55845ab4df
commit ba7f919cd5
  1. 1
      CHANGELOG
  2. 2
      src/lib/navigation/locationbar.cpp
  3. 2
      src/lib/navigation/websearchbar.cpp

@ -13,6 +13,7 @@ Version 1.3.5
* 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
* support for bookmarks manager and sidebar drag&drop managing bookmarks
* 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

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

@ -199,7 +199,7 @@ void WebSearchBar::search()
void WebSearchBar::searchInNewTab()
{
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)

Loading…
Cancel
Save