diff options
| author | Artem Varaksa | 2018-02-13 19:46:45 +0300 |
|---|---|---|
| committer | Artem Varaksa | 2018-02-14 14:53:20 +0300 |
| commit | b169b16f98eb2db92a227c1f7c43dab747a48326 (patch) | |
| tree | 69d7e7688ccf8cc131d2db227dcb5c640f33fa3e /editor/script_editor_debugger.h | |
| parent | 8cfe7988779121a742de6411fda8a243514b584d (diff) | |
| download | godot-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.h | 3 |
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(); |
