mirror of
https://github.com/godotengine/godot.git
synced 2026-05-12 22:35:35 +00:00
Allow to ignore debugger error breaks
This commit is contained in:
@@ -113,6 +113,7 @@ private:
|
||||
int warning_count;
|
||||
|
||||
bool skip_breakpoints_value = false;
|
||||
bool ignore_error_breaks_value = false;
|
||||
Ref<Script> stack_script;
|
||||
|
||||
TabContainer *tabs = nullptr;
|
||||
@@ -120,6 +121,7 @@ private:
|
||||
Label *reason = nullptr;
|
||||
|
||||
Button *skip_breakpoints = nullptr;
|
||||
Button *ignore_error_breaks = nullptr;
|
||||
Button *copy = nullptr;
|
||||
Button *step = nullptr;
|
||||
Button *next = nullptr;
|
||||
@@ -261,6 +263,7 @@ public:
|
||||
void stop();
|
||||
|
||||
void debug_skip_breakpoints();
|
||||
void debug_ignore_error_breaks();
|
||||
void debug_copy();
|
||||
|
||||
void debug_next();
|
||||
@@ -308,7 +311,8 @@ public:
|
||||
void reload_all_scripts();
|
||||
void reload_scripts(const Vector<String> &p_script_paths);
|
||||
|
||||
bool is_skip_breakpoints();
|
||||
bool is_skip_breakpoints() const;
|
||||
bool is_ignore_error_breaks() const;
|
||||
|
||||
virtual Size2 get_minimum_size() const override;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user