Skip to content

Commit

Permalink
Better suggestions.
Browse files Browse the repository at this point in the history
  • Loading branch information
gunterkoenigsmann committed Mar 14, 2020
1 parent c682510 commit 5b11f84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Worksheet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1704,7 +1704,7 @@ void Worksheet::OnMouseRightDown(wxMouseEvent &event)
continue;
if(cmdName.EndsWith("pkg"))
continue;
if(wordUnderCursor.StartsWith(cmdName))
if(cmdName.StartsWith(wordUnderCursor))
{
if (wordUnderCursor != cmdName)
sameBeginning.Add(cmdName);
Expand Down

0 comments on commit 5b11f84

Please sign in to comment.