Skip to content

Commit e45c149

Browse files
committed
Fix corrupted bullet character in message box.
Modified UCompileMgr.TMainCompileMgr.CheckForNewCompilerInstalls to specify Unicode hex character representation of bullet character instead of literal character when displaying message box that confirms new compilers have been registered.
1 parent e073b9c commit e45c149

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Src/UCompileMgr.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ function TMainCompileMgr.CheckForNewCompilerInstalls: Boolean;
292292
if (SelectedCompilers.IndexOf(Compiler) >= 0)
293293
and Compiler.IsAvailable then
294294
begin
295-
CompList := CompList + '• ' + Compiler.GetName + EOL;
295+
CompList := CompList + #$2022' ' + Compiler.GetName + EOL;
296296
Inc(RegCount);
297297
end;
298298
end;

0 commit comments

Comments
 (0)