mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 17:35:35 +02:00
bug 270326: console window displays black
Changed default console background to light gray (the case when preference store failed to initialize) to be able to troubleshoot the issue.
This commit is contained in:
parent
4a17586a41
commit
9e54b94108
1 changed files with 1 additions and 1 deletions
|
@ -358,7 +358,7 @@ public class BuildConsoleManager implements IBuildConsoleManager, IResourceChang
|
|||
if (preferenceStore.contains(preference)) {
|
||||
rgb = PreferenceConverter.getColor(preferenceStore, preference);
|
||||
} else {
|
||||
rgb = new RGB(255, 255, 255); // white background
|
||||
rgb = new RGB(200, 200, 200); // gray background
|
||||
}
|
||||
return new Color(display, rgb);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue