correction d'un erreur avec change_title lorsquele node n'existe pas encore.

This commit is contained in:
osquallo 2018-08-08 14:59:20 +02:00
parent e212bf143b
commit 2a4d823c28

View file

@ -21,6 +21,7 @@ func on_window_size_changed():
change_title()
func change_title():
if has_node( WINDOW_TITLE_INPUT ):
var title_node = get_node( WINDOW_TITLE_INPUT )
var title = "Khanat"
if title_node and not title_node.text.strip_edges() == "":