diff options
author | Paulb23 <p_batty@hotmail.co.uk> | 2020-07-27 13:54:12 +0100 |
---|---|---|
committer | Paulb23 <p_batty@hotmail.co.uk> | 2020-09-10 20:35:28 +0100 |
commit | 7829fdc1d0d4e78e24aa902219f54b0edfb6cd3c (patch) | |
tree | 1cc9e428a83e223ce9e10e9141e97639839cfa69 /scene/gui/text_edit.h | |
parent | 4d7df24d46f931839247a9886c485ed244d1c8ee (diff) |
Add folding gutter to code_edit
Diffstat (limited to 'scene/gui/text_edit.h')
-rw-r--r-- | scene/gui/text_edit.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/scene/gui/text_edit.h b/scene/gui/text_edit.h index fe99d101a2..14c1af2468 100644 --- a/scene/gui/text_edit.h +++ b/scene/gui/text_edit.h @@ -313,8 +313,6 @@ private: bool line_length_guidelines; int line_length_guideline_soft_col; int line_length_guideline_hard_col; - bool draw_fold_gutter; - int fold_gutter_width; bool hiding_enabled; bool draw_info_gutter; int info_gutter_width; @@ -467,8 +465,6 @@ protected: struct Cache { Ref<Texture2D> tab_icon; Ref<Texture2D> space_icon; - Ref<Texture2D> can_fold_icon; - Ref<Texture2D> folded_icon; Ref<Texture2D> folded_eol_icon; Ref<StyleBox> style_normal; Ref<StyleBox> style_focus; @@ -497,13 +493,11 @@ protected: int row_height; int line_spacing; - int fold_gutter_width; int info_gutter_width; int minimap_width; Cache() { row_height = 0; line_spacing = 0; - fold_gutter_width = 0; info_gutter_width = 0; minimap_width = 0; } @@ -757,12 +751,6 @@ public: void set_line_length_guideline_soft_column(int p_column); void set_line_length_guideline_hard_column(int p_column); - void set_draw_fold_gutter(bool p_draw); - bool is_drawing_fold_gutter() const; - - void set_fold_gutter_width(int p_gutter_width); - int get_fold_gutter_width() const; - void set_draw_info_gutter(bool p_draw); bool is_drawing_info_gutter() const; |