summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-06-04 15:45:36 +0200
committerGitHub <noreply@github.com>2020-06-04 15:45:36 +0200
commitb8ff8fe85c31f37bad4a945f93844dc10b0c2a5a (patch)
tree422db289febf682aa81479d9efd8cce410a58d9d
parentf05b4fea33e84ea3322702d774d69926a41ba913 (diff)
parent85175c67b858af5cac21aacdfbca78d67ea15120 (diff)
Merge pull request #39284 from mbrlabs/editornode-execute-output-selection
Enable text selection in the execute output of EditorNode
-rw-r--r--editor/editor_node.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp
index 4d69b3f0d6..14a03c5377 100644
--- a/editor/editor_node.cpp
+++ b/editor/editor_node.cpp
@@ -6568,6 +6568,7 @@ EditorNode::EditorNode() {
gui_base->add_child(load_error_dialog);
execute_outputs = memnew(RichTextLabel);
+ execute_outputs->set_selection_enabled(true);
execute_output_dialog = memnew(AcceptDialog);
execute_output_dialog->add_child(execute_outputs);
execute_output_dialog->set_title("");