1
0
Fork 0
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:
Andrew Gvozdev 2010-09-19 04:27:04 +00:00
parent 4a17586a41
commit 9e54b94108

View file

@ -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);
}