diff options
-rw-r--r-- | doc/classes/Window.xml | 4 | ||||
-rw-r--r-- | scene/main/window.cpp | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/doc/classes/Window.xml b/doc/classes/Window.xml index 75161d3c5b..0e4e3a65f8 100644 --- a/doc/classes/Window.xml +++ b/doc/classes/Window.xml @@ -368,6 +368,10 @@ <description> </description> </signal> + <signal name="theme_changed"> + <description> + </description> + </signal> <signal name="visibility_changed"> <description> </description> diff --git a/scene/main/window.cpp b/scene/main/window.cpp index 1ca4f0018b..532b457843 100644 --- a/scene/main/window.cpp +++ b/scene/main/window.cpp @@ -1579,6 +1579,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); |