diff viewer, gutter, don't show line numbers

This commit is contained in:
Basile Burg 2017-03-11 12:26:26 +01:00
parent ff7bd9fcb2
commit 09275e499d
No known key found for this signature in database
GPG Key ID: 1868039F415CB8CF
2 changed files with 3 additions and 0 deletions

View File

@ -166,6 +166,7 @@ object CEDiffViewer: TCEDiffViewer
end
end
object diffHl: TSynDiffSyn
Enabled = False
LineAddedAttri.Style = [fsBold]
LineRemovedAttri.Style = [fsBold]
LineChangedAttri.Style = [fsBold]

View File

@ -34,6 +34,8 @@ var
begin
inherited create(nil);
editor.Gutter.LineNumberPart.Visible:=false;
p := TProcess.Create(self);
try
p.Executable:= 'diff' + exeExt;