Don't reapply shortcuts to base editor, but to all others. Closes #1600

This commit is contained in:
Ansgar Becker
2022-06-03 07:00:37 +02:00
parent 41a7332d65
commit c9a2d6232b

View File

@@ -12759,8 +12759,10 @@ begin
if Editor <> SynMemoSQLLog then begin
Editor.OnPaintTransient := BaseEditor.OnPaintTransient;
end;
// Shortcuts
//Editor.Keystrokes := BaseEditor.KeyStrokes;
// Don't reapply shortcuts to base editor again, see issue 1600
if Editor <> BaseEditor then begin
Editor.Keystrokes := BaseEditor.KeyStrokes;
end;
end;