1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-19 14:31:59 +00:00

Fix breakpoint toggle signal not firing when expected

This commit is contained in:
Paulb23
2021-07-11 17:07:29 +01:00
parent fdddfa02fd
commit a736fb8ce9
4 changed files with 51 additions and 13 deletions

View File

@@ -221,8 +221,6 @@ private:
void _filter_code_completion_candidates();
void _lines_edited_from(int p_from_line, int p_to_line);
/* Line length guidelines */
TypedArray<int> line_length_guideline_columns;
Color line_length_guideline_color;
@@ -241,6 +239,14 @@ private:
int line_spacing = 1;
/* Callbacks */
int lines_edited_from = -1;
int lines_edited_to = -1;
void _lines_edited_from(int p_from_line, int p_to_line);
void _text_set();
void _text_changed();
protected:
void _gui_input(const Ref<InputEvent> &p_gui_input) override;
void _notification(int p_what);