summaryrefslogtreecommitdiff
path: root/editor/editor_log.h
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2019-05-08 15:52:49 +0200
committerGitHub <noreply@github.com>2019-05-08 15:52:49 +0200
commitb96cd577c3022c8431c7911b24c9d294c7f9c8d9 (patch)
treed7dde4420afffefe31683272852ed3df5165eb14 /editor/editor_log.h
parentb0d73d3099b5c4879224fd6b3786d62299e1a288 (diff)
parentaa4e27084fc49a72fedce8f1554962418b2b7671 (diff)
Merge pull request #28009 from kbake/output-context-menu-27543
Adds Copy button to output panel
Diffstat (limited to 'editor/editor_log.h')
-rw-r--r--editor/editor_log.h3
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();
};