Merge pull request #29601 from NilsIrl/hiding_enabled
Treat hiding_enabled as bool throughout
This commit is contained in:
commit
df25679235
3 changed files with 5 additions and 5 deletions
|
@ -391,7 +391,7 @@
|
|||
<member name="fold_gutter" type="bool" setter="set_draw_fold_gutter" getter="is_drawing_fold_gutter">
|
||||
If [code]true[/code], the fold gutter is visible. This enables folding groups of indented lines.
|
||||
</member>
|
||||
<member name="hiding_enabled" type="int" setter="set_hiding_enabled" getter="is_hiding_enabled">
|
||||
<member name="hiding_enabled" type="bool" setter="set_hiding_enabled" getter="is_hiding_enabled">
|
||||
</member>
|
||||
<member name="highlight_all_occurrences" type="bool" setter="set_highlight_all_occurrences" getter="is_highlight_all_occurrences_enabled">
|
||||
</member>
|
||||
|
|
|
@ -6344,14 +6344,14 @@ int TextEdit::get_info_gutter_width() const {
|
|||
return info_gutter_width;
|
||||
}
|
||||
|
||||
void TextEdit::set_hiding_enabled(int p_enabled) {
|
||||
void TextEdit::set_hiding_enabled(bool p_enabled) {
|
||||
if (!p_enabled)
|
||||
unhide_all_lines();
|
||||
hiding_enabled = p_enabled;
|
||||
update();
|
||||
}
|
||||
|
||||
int TextEdit::is_hiding_enabled() const {
|
||||
bool TextEdit::is_hiding_enabled() const {
|
||||
return hiding_enabled;
|
||||
}
|
||||
|
||||
|
|
|
@ -697,8 +697,8 @@ public:
|
|||
void set_info_gutter_width(int p_gutter_width);
|
||||
int get_info_gutter_width() const;
|
||||
|
||||
void set_hiding_enabled(int p_enabled);
|
||||
int is_hiding_enabled() const;
|
||||
void set_hiding_enabled(bool p_enabled);
|
||||
bool is_hiding_enabled() const;
|
||||
|
||||
void set_tooltip_request_func(Object *p_obj, const StringName &p_function, const Variant &p_udata);
|
||||
|
||||
|
|
Loading…
Reference in a new issue