diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-08-22 00:56:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-22 00:56:31 +0200 |
commit | 13f879587dd9bce59528e44b0faaf6e062f6d918 (patch) | |
tree | a46d8268b6a1cae06f6f163c304018b1e7680606 /core/os/main_loop.cpp | |
parent | 2cc83092498d3b82fa8a3aba37c32ad887d19c2c (diff) | |
parent | aae29c7a0eace9ccfeb430c5a4ebd0c9a431e272 (diff) | |
download | redot-engine-13f879587dd9bce59528e44b0faaf6e062f6d918.tar.gz |
Merge pull request #10254 from marcelofg55/master
Added notification const NOTIFICATION_WM_ABOUT
Diffstat (limited to 'core/os/main_loop.cpp')
-rw-r--r-- | core/os/main_loop.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/os/main_loop.cpp b/core/os/main_loop.cpp index 248f5537c6..6d07e2a39c 100644 --- a/core/os/main_loop.cpp +++ b/core/os/main_loop.cpp @@ -54,6 +54,8 @@ void MainLoop::_bind_methods() { BIND_CONSTANT(NOTIFICATION_WM_QUIT_REQUEST); BIND_CONSTANT(NOTIFICATION_WM_UNFOCUS_REQUEST); BIND_CONSTANT(NOTIFICATION_OS_MEMORY_WARNING); + BIND_CONSTANT(NOTIFICATION_TRANSLATION_CHANGED); + BIND_CONSTANT(NOTIFICATION_WM_ABOUT); }; void MainLoop::set_init_script(const Ref<Script> &p_init_script) { |