diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-10-20 11:48:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-20 11:48:12 +0200 |
commit | 6d3eef03bc7f2df091c0cbc16d2fdc4011f4676f (patch) | |
tree | 476a4a14e648137bdb25605a569943644d20b69d /editor/editor_inspector.h | |
parent | 36fd7f213d0082f4465cb0c89f7f9f58d06f8a0b (diff) | |
parent | bf34253131c264b14dfdde50b95fb6c14bf1ad66 (diff) |
Merge pull request #53260 from Calinou/editor-inspector-warning-yellow
Diffstat (limited to 'editor/editor_inspector.h')
-rw-r--r-- | editor/editor_inspector.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/editor_inspector.h b/editor/editor_inspector.h index b71efe8f19..06af8566ff 100644 --- a/editor/editor_inspector.h +++ b/editor/editor_inspector.h @@ -74,7 +74,7 @@ private: bool read_only; bool checkable; bool checked; - bool draw_red; + bool draw_warning; bool keying; bool deletable; @@ -150,8 +150,8 @@ public: void set_checked(bool p_checked); bool is_checked() const; - void set_draw_red(bool p_draw_red); - bool is_draw_red() const; + void set_draw_warning(bool p_draw_warning); + bool is_draw_warning() const; void set_keying(bool p_keying); bool is_keying() const; |