diff options
author | Daniel J. Ramirez <djrmuv@gmail.com> | 2017-11-20 11:34:13 -0600 |
---|---|---|
committer | Daniel J. Ramirez <djrmuv@gmail.com> | 2017-11-20 11:53:44 -0600 |
commit | e07b9a89207f3570b88d9e941bcda180db300ce6 (patch) | |
tree | 20a747c3ba04c7c1c993cfae21f4872d57828945 /editor/editor_settings.h | |
parent | 82ad05a20ef4420122b18eadf3835c4a8a49ba19 (diff) |
Fixed runtime EDITOR_DEFs being dropped.
Diffstat (limited to 'editor/editor_settings.h')
-rw-r--r-- | editor/editor_settings.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_settings.h b/editor/editor_settings.h index f11f4dfd43..a8c991a6d9 100644 --- a/editor/editor_settings.h +++ b/editor/editor_settings.h @@ -66,13 +66,13 @@ private: int order; Variant variant; Variant initial; - bool initial_set; + bool has_default_value; bool hide_from_editor; bool save; VariantContainer() { order = 0; hide_from_editor = false; - initial_set = false; + has_default_value = false; save = false; } VariantContainer(const Variant &p_variant, int p_order) { |