We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6fea6bc commit df3df9cCopy full SHA for df3df9c
Src/FmSWAGImportDlg.pas
@@ -510,7 +510,9 @@ procedure TSWAGImportDlg.DisplaySnippetsForCategory;
510
Exit;
511
fCurrentCatID := fSortedCategories[CatIdx].ID;
512
lblSelectSnippets.Caption := Format(
513
- sSnippetListCaption, [fSortedCategories[CatIdx].Title]
+ sSnippetListCaption,
514
+ // double up ampersands to avoid being treated as accelerator characters
515
+ [StrReplace(fSortedCategories[CatIdx].Title, '&', '&&')]
516
);
517
Snippets := TList<TSWAGSnippet>.Create;
518
try
0 commit comments