2 writes to IsAutomaticSuggestionsEnabled
Microsoft.CodeAnalysis.EditorFeatures (2)
InlineRename\UI\SmartRename\SmartRenameViewModel.cs (2)
167this.IsAutomaticSuggestionsEnabled = this.SupportsAutomaticSuggestions && !_globalOptionService.GetOption(InlineRenameUIOptionsStorage.CollapseSuggestionsPanel); 339this.IsAutomaticSuggestionsEnabled = !this.IsAutomaticSuggestionsEnabled;
6 references to IsAutomaticSuggestionsEnabled
Microsoft.CodeAnalysis.EditorFeatures (6)
InlineRename\UI\SmartRename\SmartRenameViewModel.cs (6)
129public bool IsSuggestionsPanelExpanded => HasSuggestions && (!SupportsAutomaticSuggestions || IsAutomaticSuggestionsEnabled); 168if (this.IsAutomaticSuggestionsEnabled) 339this.IsAutomaticSuggestionsEnabled = !this.IsAutomaticSuggestionsEnabled; 340if (this.IsAutomaticSuggestionsEnabled) 349NotifyPropertyChanged(nameof(IsAutomaticSuggestionsEnabled)); 351_globalOptionService.SetGlobalOption(InlineRenameUIOptionsStorage.CollapseSuggestionsPanel, !IsAutomaticSuggestionsEnabled);