Skip to content

Commit

Permalink
Fix HotKey bug introduced by b601c2e.
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnlaan committed Jan 20, 2025
1 parent b0851d4 commit 9c0305b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Projects/Src/Compiler.SetupCompiler.pas
Original file line number Diff line number Diff line change
Expand Up @@ -3784,7 +3784,7 @@ procedure TSetupCompiler.EnumDirsProc(const Line: PChar; const Ext: Integer);
MenuKeyCaps: array[TMenuKeyCap] of string = (
'BkSp', 'Tab', 'Esc', 'Enter', 'Space', 'PgUp',
'PgDn', 'End', 'Home', 'Left', 'Up', 'Right',
'Down', 'Ins', 'Del', 'Shift', 'Ctrl+', 'Alt+');
'Down', 'Ins', 'Del', 'Shift+', 'Ctrl+', 'Alt+');

procedure TSetupCompiler.EnumIconsProc(const Line: PChar; const Ext: Integer);

Expand Down
1 change: 1 addition & 0 deletions whatsnew.htm
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@

<ul>
<li>Compiler IDE: Added mouseover tooltips for all Pascal Scripting support functions and class members showing their prototype. Always shows all classes' members instead of just those of the current object's class.</li>
<li><i>Fix:</i> In 6.4.0, using &quot;Shift+&quot; in a <tt>HotKey</tt> parameter in the [Icons] section didn't work and required &quot;Shift&quot; instead, so for example &quot;Ctrl+ShiftM&quot; instead of &quot;Ctrl+Shift+M&quot;.</li>
<li><i>Fix:</i> In 6.4.0, a custom form shown using <tt>[Code]</tt> didn't have a taskbar button if Setup's wizard was not visible at the time.</li>
</ul>

Expand Down

0 comments on commit 9c0305b

Please sign in to comment.