Resolve "Feature: Show completion" #74

Merged
thorsten merged 9 commits from 28-feature-show-completion into main 2022-09-26 20:09:55 +00:00
Showing only changes of commit 40877241fe - Show all commits

View File

@ -39,6 +39,9 @@ public static class DeepL
{
if (DEEPL_NOT_AVAILABLE)
return string.Empty;
if (string.IsNullOrWhiteSpace(text))
return string.Empty;
if (await AppSettings.GetDeepLMode() == SettingDeepLMode.DISABLED)
return string.Empty;