Fix script highlighting for classes that begin with "_"

This commit is contained in:
Franklin Sobrinho 2016-01-10 12:20:04 -03:00
parent 3a3ce982b0
commit 56bc005643

View file

@ -327,7 +327,11 @@ void ScriptTextEditor::_load_theme_settings() {
for(List<StringName>::Element *E=types.front();E;E=E->next()) {
get_text_edit()->add_keyword_color(E->get(),type_color);
String n = E->get();
if (n.begins_with("_"))
n = n.substr(1, n.length());
get_text_edit()->add_keyword_color(n,type_color);
}
//colorize comments