summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorRay Koopa <raykoopa@users.noreply.github.com>2017-12-09 17:42:24 +0100
committerRay Koopa <raykoopa@users.noreply.github.com>2017-12-09 17:42:24 +0100
commitcae50c7f1d5c2834324b9d30562737463acfb27b (patch)
tree4e0f3c00e104a1d54c1b7797bb525c5b9799c381 /editor
parent20a566d63a34e5b502a0b46d3cbe655427f1bc76 (diff)
Remove layer flyout label.
Diffstat (limited to 'editor')
-rw-r--r--editor/property_editor.cpp11
1 files changed, 1 insertions, 10 deletions
diff --git a/editor/property_editor.cpp b/editor/property_editor.cpp
index eed1efaf9c..446a0ea35d 100644
--- a/editor/property_editor.cpp
+++ b/editor/property_editor.cpp
@@ -430,24 +430,19 @@ bool CustomPropertyEditor::edit(Object *p_owner, const String &p_name, Variant::
} else if (hint == PROPERTY_HINT_LAYERS_2D_PHYSICS || hint == PROPERTY_HINT_LAYERS_2D_RENDER || hint == PROPERTY_HINT_LAYERS_3D_PHYSICS || hint == PROPERTY_HINT_LAYERS_3D_RENDER) {
- String title;
String basename;
switch (hint) {
case PROPERTY_HINT_LAYERS_2D_RENDER:
basename = "layer_names/2d_render";
- title = "2D Render Layers";
break;
case PROPERTY_HINT_LAYERS_2D_PHYSICS:
basename = "layer_names/2d_physics";
- title = "2D Physics Layers";
break;
case PROPERTY_HINT_LAYERS_3D_RENDER:
basename = "layer_names/3d_render";
- title = "3D Render Layers";
break;
case PROPERTY_HINT_LAYERS_3D_PHYSICS:
basename = "layer_names/3d_physics";
- title = "3D Physics Layers";
break;
}
@@ -469,11 +464,7 @@ bool CustomPropertyEditor::edit(Object *p_owner, const String &p_name, Variant::
show();
- value_label[0]->set_text(title);
- value_label[0]->show();
- value_label[0]->set_position(Vector2(4, 4) * EDSCALE);
-
- checks20gc->set_position(Vector2(4, 4) * EDSCALE + Vector2(0, value_label[0]->get_size().height + 4 * EDSCALE));
+ checks20gc->set_position(Vector2(4, 4) * EDSCALE);
checks20gc->set_size(checks20gc->get_minimum_size());
set_size(Vector2(4, 4) * EDSCALE + checks20gc->get_position() + checks20gc->get_size());