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

Addressbar use default search engine by default

BUG: 405423
FIXED-IN: 23.04.0

Signed-off-by: Juraj Oravec <jurajoravec@mailo.com>
This commit is contained in:
Juraj Oravec 2023-04-09 11:08:22 +02:00
parent 55838c2917
commit 5dd9599fce
Signed by: SGOrava
GPG Key ID: 13660A3F1D9F093B
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@ Version 23.04.0
* KWallet: Store passwords in a map format
* History: Don't delete all items under dates when filtering
* AdBlock: Workaround for "Blocked content" page
* AddressBar: Search with default search engine by default
Version 22.08.2
* Fix: Typing text in the search bar sends data although suggestions are disabled (by Juraj Oravec) (BUG: 439268)

View File

@ -39,7 +39,7 @@ void QzSettings::loadSettings()
settings.beginGroup("SearchEngines");
searchOnEngineChange = settings.value("SearchOnEngineChange", true).toBool();
searchFromAddressBar = settings.value("SearchFromAddressBar", true).toBool();
searchWithDefaultEngine = settings.value("SearchWithDefaultEngine", false).toBool();
searchWithDefaultEngine = settings.value("SearchWithDefaultEngine", true).toBool();
showABSearchSuggestions = settings.value("showSearchSuggestions", true).toBool();
showWSBSearchSuggestions = settings.value("showSuggestions", true).toBool();
settings.endGroup();