diff options
author | SaracenOne <SaracenOne@gmail.com> | 2022-01-19 07:59:42 +0000 |
---|---|---|
committer | SaracenOne <SaracenOne@gmail.com> | 2022-01-19 07:59:42 +0000 |
commit | 2db30ef2233152c4d3147d5c0f2bfff65e434827 (patch) | |
tree | 563862659ee0814df3910197220406e8d55147d2 | |
parent | 4979d9fc7b0ecc68b8e98d2e98a6595be6bb8992 (diff) |
Add missing 'theme_changed' signal to Window class
-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 43de4187d4..b584e328f4 100644 --- a/scene/main/window.cpp +++ b/scene/main/window.cpp @@ -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); |