mirror of
https://github.com/arduino/Arduino.git
synced 2025-03-14 11:29:26 +01:00
Forgot to specify colour for LITERAL_BOOLEAN token type. Fixes #3346
This commit is contained in:
parent
4813e573c2
commit
ffff480e9b
@ -126,6 +126,7 @@ public class SketchTextArea extends RSyntaxTextArea {
|
|||||||
setSyntaxTheme(TokenTypes.COMMENT_EOL, "comment1");
|
setSyntaxTheme(TokenTypes.COMMENT_EOL, "comment1");
|
||||||
setSyntaxTheme(TokenTypes.COMMENT_KEYWORD, "comment1");
|
setSyntaxTheme(TokenTypes.COMMENT_KEYWORD, "comment1");
|
||||||
setSyntaxTheme(TokenTypes.COMMENT_MARKUP, "comment1");
|
setSyntaxTheme(TokenTypes.COMMENT_MARKUP, "comment1");
|
||||||
|
setSyntaxTheme(TokenTypes.LITERAL_BOOLEAN, "literal_boolean");
|
||||||
setSyntaxTheme(TokenTypes.LITERAL_CHAR, "literal_char");
|
setSyntaxTheme(TokenTypes.LITERAL_CHAR, "literal_char");
|
||||||
setSyntaxTheme(TokenTypes.LITERAL_STRING_DOUBLE_QUOTE, "literal_string_double_quote");
|
setSyntaxTheme(TokenTypes.LITERAL_STRING_DOUBLE_QUOTE, "literal_string_double_quote");
|
||||||
}
|
}
|
||||||
|
@ -97,6 +97,7 @@ editor.literal1.style = #006699,plain
|
|||||||
editor.literal2.style = #00979C,plain
|
editor.literal2.style = #00979C,plain
|
||||||
editor.variable.style = #00979C,plain
|
editor.variable.style = #00979C,plain
|
||||||
editor.reserved_word_2.style = #00979C,plain
|
editor.reserved_word_2.style = #00979C,plain
|
||||||
|
editor.literal_boolean.style = #00979C,plain
|
||||||
editor.literal_char.style = #00979C,plain
|
editor.literal_char.style = #00979C,plain
|
||||||
editor.literal_string_double_quote.style = #00979C,plain
|
editor.literal_string_double_quote.style = #00979C,plain
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user