private void ModificationIndicatorClicked(ITextEditor selectedEditor)
 {
     PreviewTextChangesFlyoutItem.IsEnabled =
         !selectedEditor.NoChangesSinceLastSaved(compareTextOnly: true) &&
         selectedEditor.Mode != TextEditorMode.DiffPreview;
     ModificationIndicator?.ContextFlyout.ShowAt(ModificationIndicator);
 }