idespotter: fixed two-key shortcuts

git-svn-id: trunk@59152 -
This commit is contained in:
mattias 2018-09-23 16:43:07 +00:00
parent 0cb91fea6f
commit 9483469e58

View File

@ -471,7 +471,7 @@ begin
begin
ks:=' ('+KeyAndShiftStateToKeyString(Cmd.ShortcutA.Key1,Cmd.ShortcutA.Shift1);
if Cmd.ShortcutA.Key2<>VK_UNKNOWN then
ks:=Ks+', '+KeyAndShiftStateToKeyString(Cmd.ShortcutA.Key1,Cmd.ShortcutA.Shift1);
ks:=Ks+', '+KeyAndShiftStateToKeyString(Cmd.ShortcutA.Key2,Cmd.ShortcutA.Shift2);
ks:=ks+')';
end;
Itm:=TSearchItem.Create(Cmd);