aboutsummaryrefslogtreecommitdiff
path: root/editor/script_editor_debugger.h
diff options
context:
space:
mode:
authorArtem Varaksa2018-02-13 19:46:45 +0300
committerArtem Varaksa2018-02-14 14:53:20 +0300
commitb169b16f98eb2db92a227c1f7c43dab747a48326 (patch)
tree69d7e7688ccf8cc131d2db227dcb5c640f33fa3e /editor/script_editor_debugger.h
parent8cfe7988779121a742de6411fda8a243514b584d (diff)
downloadgodot-b169b16f98eb2db92a227c1f7c43dab747a48326.tar.gz
godot-b169b16f98eb2db92a227c1f7c43dab747a48326.tar.zst
godot-b169b16f98eb2db92a227c1f7c43dab747a48326.zip
Fix #16543 (add button to copy error from debugger)
Diffstat (limited to '')
-rw-r--r--editor/script_editor_debugger.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/script_editor_debugger.h b/editor/script_editor_debugger.h
index e86add940..669d8737f 100644
--- a/editor/script_editor_debugger.h
+++ b/editor/script_editor_debugger.h
@@ -104,6 +104,7 @@ class ScriptEditorDebugger : public Control {
Label *reason;
+ Button *copy;
Button *step;
Button *next;
Button *back;
@@ -197,6 +198,8 @@ public:
void unpause();
void stop();
+ void debug_copy();
+
void debug_next();
void debug_step();
void debug_break();