From 793b855819d41baf67b5cb24f8c64cc07339c0ff Mon Sep 17 00:00:00 2001 From: Petr Mironychev <9195189+Palm1r@users.noreply.github.com> Date: Wed, 11 Sep 2024 01:59:45 +0200 Subject: [PATCH] Change default value for start ai suggestion --- settings/GeneralSettings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/GeneralSettings.cpp b/settings/GeneralSettings.cpp index 5f86830..7933965 100644 --- a/settings/GeneralSettings.cpp +++ b/settings/GeneralSettings.cpp @@ -72,7 +72,7 @@ GeneralSettings::GeneralSettings() Tr::tr("The number of characters that need to be typed within the typing interval " "before an AI suggestion request is sent.")); autoCompletionCharThreshold.setRange(0, 10); - autoCompletionCharThreshold.setDefaultValue(1); + autoCompletionCharThreshold.setDefaultValue(0); autoCompletionTypingInterval.setSettingsKey(Constants::AUTO_COMPLETION_TYPING_INTERVAL); autoCompletionTypingInterval.setLabelText(Tr::tr("character(s) within(ms)"));