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 /scene/main | |
parent | 4979d9fc7b0ecc68b8e98d2e98a6595be6bb8992 (diff) |
Add missing 'theme_changed' signal to Window class
Diffstat (limited to 'scene/main')
-rw-r--r-- | scene/main/window.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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); |