Skip to content

Commit

Permalink
Fix spelling suggestions not showing.
Browse files Browse the repository at this point in the history
  • Loading branch information
63BeetleSmurf committed Jul 11, 2024
1 parent 3f15d19 commit 54c3fb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Pinny Notes/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ private ContextMenu GetNoteTextBoxContextMenu()
SpellingError spellingError = NoteTextBox.GetSpellingError(caretIndex);
if (spellingError != null)
{
if (spellingError.Suggestions.Any())
if (!spellingError.Suggestions.Any())
menu.Items.Add(
new MenuItem()
{
Expand Down

0 comments on commit 54c3fb8

Please sign in to comment.