2 writes to IsAutomaticSuggestionsEnabled
Microsoft.CodeAnalysis.EditorFeatures.Wpf (2)
InlineRename\UI\SmartRename\SmartRenameViewModel.cs (2)
175this.IsAutomaticSuggestionsEnabled = this.SupportsAutomaticSuggestions && !_globalOptionService.GetOption(InlineRenameUIOptionsStorage.CollapseSuggestionsPanel); 347this.IsAutomaticSuggestionsEnabled = !this.IsAutomaticSuggestionsEnabled;
6 references to IsAutomaticSuggestionsEnabled
Microsoft.CodeAnalysis.EditorFeatures.Wpf (6)
InlineRename\UI\SmartRename\SmartRenameViewModel.cs (6)
137public bool IsSuggestionsPanelExpanded => HasSuggestions && (!SupportsAutomaticSuggestions || IsAutomaticSuggestionsEnabled); 176if (this.IsAutomaticSuggestionsEnabled) 347this.IsAutomaticSuggestionsEnabled = !this.IsAutomaticSuggestionsEnabled; 348if (this.IsAutomaticSuggestionsEnabled) 357NotifyPropertyChanged(nameof(IsAutomaticSuggestionsEnabled)); 359_globalOptionService.SetGlobalOption(InlineRenameUIOptionsStorage.CollapseSuggestionsPanel, !IsAutomaticSuggestionsEnabled);