Skip to content

Commit

Permalink
supress popup on startup for command/quick palettes (stevencohn#1510)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevencohn authored Jul 29, 2024
1 parent 6b811fb commit 7eaa020
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion OneMore/Commands/Tools/CommandPaletteDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ public CommandPaletteDialog(string title, string intro, bool showClearOption)

palette = new MoreAutoCompleteList
{
ShowPopupOnStartup = true
// keeping this as false will eliminate flicker on startup
ShowPopupOnStartup = false
};

palette.SetAutoCompleteList(cmdBox);
Expand Down

0 comments on commit 7eaa020

Please sign in to comment.