aboutsummaryrefslogtreecommitdiff
path: root/editor/editor_log.cpp
diff options
context:
space:
mode:
authorDaniel J. Ramirez2017-08-07 21:55:24 -0500
committerDaniel J. Ramirez2017-08-08 11:44:37 -0500
commit273d2ab9d492fc6855302b69b7219a95f77644aa (patch)
tree7612bf55c71f6a15cf4246bc96fe277ecddc6e4c /editor/editor_log.cpp
parent9e938bf3c1d6316d6a5a87569e211e8c29842964 (diff)
downloadgodot-273d2ab9d492fc6855302b69b7219a95f77644aa.tar.gz
godot-273d2ab9d492fc6855302b69b7219a95f77644aa.tar.zst
godot-273d2ab9d492fc6855302b69b7219a95f77644aa.zip
Diffstat (limited to 'editor/editor_log.cpp')
-rw-r--r--editor/editor_log.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/editor/editor_log.cpp b/editor/editor_log.cpp
index addffd6ea..5ada5f909 100644
--- a/editor/editor_log.cpp
+++ b/editor/editor_log.cpp
@@ -168,15 +168,10 @@ EditorLog::EditorLog() {
HBoxContainer *hb = memnew(HBoxContainer);
vb->add_child(hb);
title = memnew(Label);
- title->set_text(TTR(" Output:"));
+ title->set_text(TTR("Output:"));
title->set_h_size_flags(SIZE_EXPAND_FILL);
hb->add_child(title);
- //pd = memnew( PaneDrag );
- //hb->add_child(pd);
- //pd->connect("dragged",this,"_dragged");
- //pd->set_default_cursor_shape(Control::CURSOR_MOVE);
-
clearbutton = memnew(Button);
hb->add_child(clearbutton);
clearbutton->set_text(TTR("Clear"));
@@ -184,7 +179,7 @@ EditorLog::EditorLog() {
ec = memnew(Control);
vb->add_child(ec);
- ec->set_custom_minimum_size(Size2(0, 180));
+ ec->set_custom_minimum_size(Size2(0, 180) * EDSCALE);
ec->set_v_size_flags(SIZE_EXPAND_FILL);
pc = memnew(PanelContainer);