Skip to content

Commit 64a9ee4

Browse files
committed
Modify slightly the compared options summary to be more readable
1 parent 8ea7c42 commit 64a9ee4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Compare.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1140,7 +1140,7 @@ void ComparedPair::setStatus()
11401140
{
11411141
if (!options.findUniqueMode && options.detectMoves)
11421142
{
1143-
static constexpr TCHAR detectMovesStr[] = TEXT(" Detect Moves ,");
1143+
static constexpr TCHAR detectMovesStr[] = TEXT(" Detect Moves |");
11441144

11451145
_tcscpy_s(info + infoCurrentPos, _countof(info) - infoCurrentPos, detectMovesStr);
11461146
infoCurrentPos += _countof(detectMovesStr) - 1;
@@ -1149,7 +1149,7 @@ void ComparedPair::setStatus()
11491149
if (options.ignoreEmptyLines || options.ignoreAllSpaces || options.ignoreChangedSpaces ||
11501150
options.ignoreCase || options.ignoreRegex)
11511151
{
1152-
const int len = _sntprintf_s(buf, _countof(buf), _TRUNCATE, TEXT(" Ignore:%s%s%s%s"),
1152+
const int len = _sntprintf_s(buf, _countof(buf), _TRUNCATE, TEXT(" Ignore :%s%s%s%s"),
11531153
options.ignoreEmptyLines ? TEXT(" Empty Lines ,") : TEXT(""),
11541154
options.ignoreAllSpaces ? TEXT(" All Spaces ,") : options.ignoreChangedSpaces
11551155
? TEXT(" Changed Spaces ,") : TEXT(""),
@@ -3163,7 +3163,7 @@ void ActiveCompareSummary()
31633163
if (cmpPair->options.ignoreEmptyLines || cmpPair->options.ignoreAllSpaces ||
31643164
cmpPair->options.ignoreChangedSpaces || cmpPair->options.ignoreCase || cmpPair->options.ignoreRegex)
31653165
{
3166-
const int len = _sntprintf_s(buf, _countof(buf), _TRUNCATE, TEXT("Ignore:%s%s%s%s"),
3166+
const int len = _sntprintf_s(buf, _countof(buf), _TRUNCATE, TEXT("Ignore :%s%s%s%s"),
31673167
cmpPair->options.ignoreEmptyLines ? TEXT(" Empty Lines ,") : TEXT(""),
31683168
cmpPair->options.ignoreAllSpaces ? TEXT(" All Spaces ,") : cmpPair->options.ignoreChangedSpaces
31693169
? TEXT(" Changed Spaces ,") : TEXT(""),

0 commit comments

Comments
 (0)