diff --git a/Flow.Launcher/ViewModel/MainViewModel.cs b/Flow.Launcher/ViewModel/MainViewModel.cs index ec5b52c9d..a8425a456 100644 --- a/Flow.Launcher/ViewModel/MainViewModel.cs +++ b/Flow.Launcher/ViewModel/MainViewModel.cs @@ -768,17 +768,10 @@ namespace Flow.Launcher.ViewModel private string _placeholderText; public string PlaceholderText { - get => _placeholderText; + get => string.IsNullOrEmpty(_placeholderText) ? App.API.GetTranslation("queryTextBoxPlaceholder") : _placeholderText; set { - if (string.IsNullOrEmpty(value)) - { - _placeholderText = App.API.GetTranslation("queryTextBoxSuggestion"); - } - else - { - _placeholderText = value; - } + _placeholderText = value; OnPropertyChanged(); } }