You've already forked godot
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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user