Skip to content

Commit

Permalink
Fix commit of test code I didn't want to commit yet.
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnlaan committed Jun 14, 2024
1 parent f9265cc commit 97fbeca
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions Projects/Src/CompForm.pas
Original file line number Diff line number Diff line change
Expand Up @@ -2819,16 +2819,6 @@ procedure TCompileForm.HDocClick(Sender: TObject);
procedure TCompileForm.MemoKeyDown(Sender: TObject; var Key: Word;
Shift: TShiftState);
begin
if Key = VK_RIGHT then begin
var Memo := Sender as TScintEdit;
if (Memo.Call(SCI_GETSELECTIONMODE, 0, 0) = SC_SEL_RECTANGLE) or
(Memo.Call(SCI_GETSELECTIONMODE, 0, 0) = SC_SEL_THIN) then begin
//'Enable Column Selection to Multi-editing';
Memo.Call(SCI_SETSELECTIONMODE, SC_SEL_STREAM, 0);
Memo.Call(SCI_SETSELECTIONMODE, SC_SEL_STREAM, 0);
end;
end;

if Key = VK_F1 then begin
var HelpFile := GetHelpFile;
if Assigned(HtmlHelp) then begin
Expand Down

0 comments on commit 97fbeca

Please sign in to comment.