diff options
| author | Thomas Herzog <thomas.herzog@mail.com> | 2017-07-25 18:42:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-07-25 18:42:18 +0200 |
| commit | 497411aa124f665e6f89bc6137c65fbd106a7859 (patch) | |
| tree | dc1071f9e51d8a5cf6dbf186a040166d7ea7d362 /modules/nativescript/nativescript.h | |
| parent | 47b2455a627f823e300c9ab1c1fd39dcd65607a7 (diff) | |
| parent | cdf1212bee6ce3f09d025596926df2005e7f3304 (diff) | |
Merge pull request #9844 from karroffel/nativescript-double-init-fix
[NativeScript] fix double initialization in editor
Diffstat (limited to 'modules/nativescript/nativescript.h')
| -rw-r--r-- | modules/nativescript/nativescript.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/nativescript/nativescript.h b/modules/nativescript/nativescript.h index 5702ba2e8d..bc7a6e3ed6 100644 --- a/modules/nativescript/nativescript.h +++ b/modules/nativescript/nativescript.h @@ -259,6 +259,8 @@ inline NativeScriptDesc *NativeScript::get_script_desc() const { class NativeReloadNode : public Node { GDCLASS(NativeReloadNode, Node) + bool unloaded = false; + public: static void _bind_methods(); void _notification(int p_what); |