1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-14 13:41:12 +00:00

Fix #16543 (add button to copy error from debugger)

(cherry picked from commit b169b16f98)
This commit is contained in:
Artem Varaksa
2018-02-13 19:46:45 +03:00
committed by Hein-Pieter van Braam
parent eb5e5200cc
commit c94d8e6577
2 changed files with 23 additions and 0 deletions

View File

@@ -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();