1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-06 19:41:11 +00:00

Add missing 'theme_changed' signal to Window class

This commit is contained in:
SaracenOne
2022-01-19 07:59:42 +00:00
parent 4979d9fc7b
commit 2db30ef223
2 changed files with 5 additions and 0 deletions

View File

@@ -368,6 +368,10 @@
<description>
</description>
</signal>
<signal name="theme_changed">
<description>
</description>
</signal>
<signal name="visibility_changed">
<description>
</description>

View File

@@ -1574,6 +1574,7 @@ void Window::_bind_methods() {
ADD_SIGNAL(MethodInfo("go_back_requested"));
ADD_SIGNAL(MethodInfo("visibility_changed"));
ADD_SIGNAL(MethodInfo("about_to_popup"));
ADD_SIGNAL(MethodInfo("theme_changed"));
BIND_CONSTANT(NOTIFICATION_VISIBILITY_CHANGED);