ext mod detect, add navig shortcuts + prevent double dialog display

This commit is contained in:
Basile Burg 2017-03-12 20:57:26 +01:00
parent 7aee6a38f6
commit 58758616bb
No known key found for this signature in database
GPG Key ID: 1868039F415CB8CF
2 changed files with 26 additions and 2 deletions

View File

@ -26,7 +26,31 @@ object CEDiffViewer: TCEDiffViewer
RightGutter.Width = 0 RightGutter.Width = 0
RightGutter.MouseActions = <> RightGutter.MouseActions = <>
Highlighter = diffHl Highlighter = diffHl
Keystrokes = <> Keystrokes = <
item
Command = ecUp
ShortCut = 38
end
item
Command = ecDown
ShortCut = 40
end
item
Command = ecLeft
ShortCut = 37
end
item
Command = ecRight
ShortCut = 39
end
item
Command = ecPageUp
ShortCut = 33
end
item
Command = ecPageDown
ShortCut = 34
end>
MouseActions = <> MouseActions = <>
MouseTextActions = <> MouseTextActions = <>
MouseSelActions = <> MouseSelActions = <>

View File

@ -828,7 +828,7 @@ end;
procedure TCESynMemo.setFocus; procedure TCESynMemo.setFocus;
begin begin
inherited; inherited;
checkFileDate; //checkFileDate;
highlightCurrentIdentifier; highlightCurrentIdentifier;
subjDocFocused(TCEMultiDocSubject(fMultiDocSubject), self); subjDocFocused(TCEMultiDocSubject(fMultiDocSubject), self);
end; end;