From ac549671620deae7d32921611f0b72dbf7733cb3 Mon Sep 17 00:00:00 2001 From: hpnrep6 <57055412+hpnrep6@users.noreply.github.com> Date: Sat, 19 Jun 2021 16:07:47 -0400 Subject: [PATCH] Adjust GDscript example formatting in Using Containers (#5020) --- tutorials/gui/gui_containers.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/gui/gui_containers.rst b/tutorials/gui/gui_containers.rst index d63d04f3f..cf9803c39 100644 --- a/tutorials/gui/gui_containers.rst +++ b/tutorials/gui/gui_containers.rst @@ -170,7 +170,7 @@ to its rect size: extends Container func _notification(what): - if (what==NOTIFICATION_SORT_CHILDREN): + if what == NOTIFICATION_SORT_CHILDREN: # Must re-sort the children for c in get_children(): # Fit to own size