diff options
author | kbake <kbake@outlook.com> | 2019-04-14 04:55:31 -0400 |
---|---|---|
committer | kbake <kbake@outlook.com> | 2019-04-30 21:37:24 -0400 |
commit | aa4e27084fc49a72fedce8f1554962418b2b7671 (patch) | |
tree | df4d90e54ae595732cbeb60caa30a9712b80a907 /editor/editor_log.h | |
parent | dd2cd06165670bb0d78bf4aa397935be15716e76 (diff) | |
download | redot-engine-aa4e27084fc49a72fedce8f1554962418b2b7671.tar.gz |
fixes 27543, adds a copy button for the editor log
Diffstat (limited to 'editor/editor_log.h')
-rw-r--r-- | editor/editor_log.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/editor_log.h b/editor/editor_log.h index 13318fd68f..bb56bd34fe 100644 --- a/editor/editor_log.h +++ b/editor/editor_log.h @@ -48,6 +48,7 @@ class EditorLog : public VBoxContainer { GDCLASS(EditorLog, VBoxContainer); Button *clearbutton; + Button *copybutton; Label *title; RichTextLabel *log; HBoxContainer *title_hb; @@ -62,6 +63,7 @@ class EditorLog : public VBoxContainer { //void _dragged(const Point2& p_ofs); void _clear_request(); + void _copy_request(); static void _undo_redo_cbk(void *p_self, const String &p_name); protected: @@ -80,6 +82,7 @@ public: void deinit(); void clear(); + void copy(); EditorLog(); ~EditorLog(); }; |