mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 01:22:10 +01: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:
parent
55838c2917
commit
5dd9599fce
|
@ -7,6 +7,7 @@ Version 23.04.0
|
||||||
* KWallet: Store passwords in a map format
|
* KWallet: Store passwords in a map format
|
||||||
* History: Don't delete all items under dates when filtering
|
* History: Don't delete all items under dates when filtering
|
||||||
* AdBlock: Workaround for "Blocked content" page
|
* AdBlock: Workaround for "Blocked content" page
|
||||||
|
* AddressBar: Search with default search engine by default
|
||||||
|
|
||||||
Version 22.08.2
|
Version 22.08.2
|
||||||
* Fix: Typing text in the search bar sends data although suggestions are disabled (by Juraj Oravec) (BUG: 439268)
|
* Fix: Typing text in the search bar sends data although suggestions are disabled (by Juraj Oravec) (BUG: 439268)
|
||||||
|
|
|
@ -39,7 +39,7 @@ void QzSettings::loadSettings()
|
||||||
settings.beginGroup("SearchEngines");
|
settings.beginGroup("SearchEngines");
|
||||||
searchOnEngineChange = settings.value("SearchOnEngineChange", true).toBool();
|
searchOnEngineChange = settings.value("SearchOnEngineChange", true).toBool();
|
||||||
searchFromAddressBar = settings.value("SearchFromAddressBar", 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();
|
showABSearchSuggestions = settings.value("showSearchSuggestions", true).toBool();
|
||||||
showWSBSearchSuggestions = settings.value("showSuggestions", true).toBool();
|
showWSBSearchSuggestions = settings.value("showSuggestions", true).toBool();
|
||||||
settings.endGroup();
|
settings.endGroup();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user