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