2 writes to IsAutomaticSuggestionsEnabled
Microsoft.CodeAnalysis.EditorFeatures.Wpf (2)
InlineRename\UI\SmartRename\SmartRenameViewModel.cs (2)
133this.IsAutomaticSuggestionsEnabled = this.SupportsAutomaticSuggestions && !_globalOptionService.GetOption(InlineRenameUIOptionsStorage.CollapseSuggestionsPanel); 284this.IsAutomaticSuggestionsEnabled = !this.IsAutomaticSuggestionsEnabled;
5 references to IsAutomaticSuggestionsEnabled
Microsoft.CodeAnalysis.EditorFeatures.Wpf (5)
InlineRename\UI\SmartRename\SmartRenameViewModel.cs (5)
134if (this.IsAutomaticSuggestionsEnabled) 284this.IsAutomaticSuggestionsEnabled = !this.IsAutomaticSuggestionsEnabled; 285if (this.IsAutomaticSuggestionsEnabled) 290NotifyPropertyChanged(nameof(IsAutomaticSuggestionsEnabled)); 292_globalOptionService.SetGlobalOption(InlineRenameUIOptionsStorage.CollapseSuggestionsPanel, !IsAutomaticSuggestionsEnabled);