diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2022-03-12 22:00:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-12 22:00:38 +0100 |
commit | 84b358c1d8a01ce70a56a099ef98ae014a91239b (patch) | |
tree | 9dfb634eb5126e47dc576e62473361fea1f04ecb /editor/code_editor.cpp | |
parent | 5959d38c6838d3470ba2b1e166602366cdbac6c5 (diff) | |
parent | 918b09cabc39dbf13bed2406da56035341ac1cf4 (diff) | |
download | redot-engine-84b358c1d8a01ce70a56a099ef98ae014a91239b.tar.gz |
Merge pull request #58338 from aaronfranke/bools
Initialize bools in the headers in `editor/`
Diffstat (limited to 'editor/code_editor.cpp')
-rw-r--r-- | editor/code_editor.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp index 22d3155159..2896fda2d2 100644 --- a/editor/code_editor.cpp +++ b/editor/code_editor.cpp @@ -618,8 +618,6 @@ void FindReplaceBar::_bind_methods() { FindReplaceBar::FindReplaceBar() { results_count = -1; - replace_all_mode = false; - preserve_cursor = false; vbc_lineedit = memnew(VBoxContainer); add_child(vbc_lineedit); @@ -1887,8 +1885,6 @@ CodeTextEditor::CodeTextEditor() { error_button->set_default_cursor_shape(CURSOR_POINTING_HAND); error_button->connect("pressed", callable_mp(this, &CodeTextEditor::_error_button_pressed)); error_button->set_tooltip(TTR("Errors")); - - is_errors_panel_opened = false; set_error_count(0); // Warnings @@ -1899,8 +1895,6 @@ CodeTextEditor::CodeTextEditor() { warning_button->set_default_cursor_shape(CURSOR_POINTING_HAND); warning_button->connect("pressed", callable_mp(this, &CodeTextEditor::_warning_button_pressed)); warning_button->set_tooltip(TTR("Warnings")); - - is_warnings_panel_opened = false; set_warning_count(0); // Line and column |