mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-04 23:05:47 +02:00
Fix for 156749 - Syntax highlighter preferences initialized incorrectly
This commit is contained in:
parent
302b3a69aa
commit
76c6346936
1 changed files with 3 additions and 3 deletions
|
@ -180,13 +180,13 @@ public class CEditorPreferencePage extends AbstractPreferencePage implements IWo
|
||||||
store.setDefault(ICColorConstants.C_DEFAULT + "_bold", false); //$NON-NLS-1$
|
store.setDefault(ICColorConstants.C_DEFAULT + "_bold", false); //$NON-NLS-1$
|
||||||
|
|
||||||
PreferenceConverter.setDefault(store, ICColorConstants.C_OPERATOR, new RGB(0, 0, 0));
|
PreferenceConverter.setDefault(store, ICColorConstants.C_OPERATOR, new RGB(0, 0, 0));
|
||||||
store.setDefault(ICColorConstants.C_DEFAULT + "_bold", false); //$NON-NLS-1$
|
store.setDefault(ICColorConstants.C_OPERATOR + "_bold", false); //$NON-NLS-1$
|
||||||
|
|
||||||
PreferenceConverter.setDefault(store, ICColorConstants.C_BRACES, new RGB(0, 0, 0));
|
PreferenceConverter.setDefault(store, ICColorConstants.C_BRACES, new RGB(0, 0, 0));
|
||||||
store.setDefault(ICColorConstants.C_DEFAULT + "_bold", false); //$NON-NLS-1$
|
store.setDefault(ICColorConstants.C_BRACES + "_bold", false); //$NON-NLS-1$
|
||||||
|
|
||||||
PreferenceConverter.setDefault(store, ICColorConstants.C_NUMBER, new RGB(0, 0, 0));
|
PreferenceConverter.setDefault(store, ICColorConstants.C_NUMBER, new RGB(0, 0, 0));
|
||||||
store.setDefault(ICColorConstants.C_DEFAULT + "_bold", false); //$NON-NLS-1$
|
store.setDefault(ICColorConstants.C_NUMBER + "_bold", false); //$NON-NLS-1$
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue