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