Several improvements to editor inspector usability and style

This commit is contained in:
Juan Linietsky 2018-07-18 19:37:17 -03:00
parent a731bd5864
commit 43dc050947
11 changed files with 309 additions and 95 deletions

View file

@ -68,6 +68,7 @@ class EditorSpinSlider : public Range {
void _value_input_entered(const String &);
void _value_focus_exited();
bool hide_slider;
bool flat;
protected:
void _notification(int p_what);
@ -88,6 +89,9 @@ public:
void set_read_only(bool p_enable);
bool is_read_only() const;
void set_flat(bool p_enable);
bool is_flat() const;
virtual Size2 get_minimum_size() const;
EditorSpinSlider();
};