- String constants for the Display Color Identity setting.

This commit is contained in:
Agetian
2015-06-01 20:25:21 +00:00
parent 21323a4f72
commit be9e5ef95d
3 changed files with 9 additions and 2 deletions

View File

@@ -300,7 +300,7 @@ public enum CSubmenuPreferences implements ICDoc {
}
private void initializeColorIdentityCombobox() {
final String[] elems = {"Never", "Only Multicolor", "Always"};
final String[] elems = {ForgeConstants.DISP_COLOR_IDENT_NEVER, ForgeConstants.DISP_COLOR_IDENT_MULTICOLOR, ForgeConstants.DISP_COLOR_IDENT_ALWAYS};
final FPref userSetting = FPref.UI_DISPLAY_COLOR_IDENTITY;
final FComboBoxPanel<String> panel = this.view.getDisplayColorIdentity();
final FComboBox<String> comboBox = createComboBox(elems, userSetting);