|
@@ -646,6 +646,7 @@ var
|
|
|
|
|
|
{ Differ }
|
|
|
gDifferIgnoreCase,
|
|
|
+ gDifferAutoCompare,
|
|
|
gDifferKeepScrolling,
|
|
|
gDifferLineDifferences,
|
|
|
gDifferPaintBackground,
|
|
@@ -2065,6 +2066,7 @@ begin
|
|
|
|
|
|
{ Differ }
|
|
|
gDifferIgnoreCase := False;
|
|
|
+ gDifferAutoCompare := True;
|
|
|
gDifferKeepScrolling := True;
|
|
|
gDifferPaintBackground := True;
|
|
|
gDifferLineDifferences := False;
|
|
@@ -3174,6 +3176,7 @@ begin
|
|
|
if Assigned(Node) then
|
|
|
begin
|
|
|
gDifferIgnoreCase := GetValue(Node, 'IgnoreCase', gDifferIgnoreCase);
|
|
|
+ gDifferAutoCompare := GetValue(Node, 'AutoCompare', gDifferAutoCompare);
|
|
|
gDifferKeepScrolling := GetValue(Node, 'KeepScrolling', gDifferKeepScrolling);
|
|
|
gDifferPaintBackground := GetValue(Node, 'PaintBackground', gDifferPaintBackground);
|
|
|
gDifferLineDifferences := GetValue(Node, 'LineDifferences', gDifferLineDifferences);
|
|
@@ -3793,6 +3796,7 @@ begin
|
|
|
{ Differ }
|
|
|
Node := FindNode(Root, 'Differ',True);
|
|
|
SetValue(Node, 'IgnoreCase', gDifferIgnoreCase);
|
|
|
+ SetValue(Node, 'AutoCompare', gDifferAutoCompare);
|
|
|
SetValue(Node, 'KeepScrolling', gDifferKeepScrolling);
|
|
|
SetValue(Node, 'PaintBackground', gDifferPaintBackground);
|
|
|
SetValue(Node, 'LineDifferences', gDifferLineDifferences);
|