You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-16 14:00:40 +00:00
Make sure variant parser recognizes "nil" for compatibility with old engine.cfg style cofig. Closes #3531
This commit is contained in:
@@ -542,7 +542,7 @@ Error VariantParser::parse_value(Token& token,Variant &value,Stream *p_stream,in
|
||||
value=true;
|
||||
else if (id=="false")
|
||||
value=false;
|
||||
else if (id=="null")
|
||||
else if (id=="null" || id=="nil")
|
||||
value=Variant();
|
||||
else if (id=="Vector2"){
|
||||
|
||||
|
||||
@@ -1597,7 +1597,9 @@ bool Control::has_focus() const {
|
||||
|
||||
void Control::grab_focus() {
|
||||
|
||||
if (!is_inside_tree()){
|
||||
ERR_FAIL_COND(!is_inside_tree());
|
||||
}
|
||||
if (data.focus_mode==FOCUS_NONE)
|
||||
return;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user