You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-07 12:30:27 +00:00
Rename Control margin to offset
This commit is contained in:
@@ -4018,16 +4018,16 @@ void EditorNode::_dock_make_float() {
|
||||
window->set_title(dock->get_name());
|
||||
Panel *p = memnew(Panel);
|
||||
p->set_mode(Panel::MODE_FOREGROUND);
|
||||
p->set_anchors_and_margins_preset(Control::PRESET_WIDE);
|
||||
p->set_anchors_and_offsets_preset(Control::PRESET_WIDE);
|
||||
window->add_child(p);
|
||||
MarginContainer *margin = memnew(MarginContainer);
|
||||
margin->set_anchors_and_margins_preset(Control::PRESET_WIDE);
|
||||
margin->set_anchors_and_offsets_preset(Control::PRESET_WIDE);
|
||||
margin->add_theme_constant_override("margin_right", borders.width);
|
||||
margin->add_theme_constant_override("margin_top", borders.height);
|
||||
margin->add_theme_constant_override("margin_left", borders.width);
|
||||
margin->add_theme_constant_override("margin_bottom", borders.height);
|
||||
window->add_child(margin);
|
||||
dock->set_anchors_and_margins_preset(Control::PRESET_WIDE);
|
||||
dock->set_anchors_and_offsets_preset(Control::PRESET_WIDE);
|
||||
margin->add_child(dock);
|
||||
window->set_wrap_controls(true);
|
||||
window->set_size(dock_size);
|
||||
@@ -5795,11 +5795,11 @@ EditorNode::EditorNode() {
|
||||
|
||||
theme_base = memnew(Control);
|
||||
add_child(theme_base);
|
||||
theme_base->set_anchors_and_margins_preset(Control::PRESET_WIDE);
|
||||
theme_base->set_anchors_and_offsets_preset(Control::PRESET_WIDE);
|
||||
|
||||
gui_base = memnew(Panel);
|
||||
theme_base->add_child(gui_base);
|
||||
gui_base->set_anchors_and_margins_preset(Control::PRESET_WIDE);
|
||||
gui_base->set_anchors_and_offsets_preset(Control::PRESET_WIDE);
|
||||
|
||||
theme_base->set_theme(theme);
|
||||
gui_base->set_theme(theme);
|
||||
@@ -5811,13 +5811,13 @@ EditorNode::EditorNode() {
|
||||
gui_base->add_child(progress_dialog);
|
||||
|
||||
// take up all screen
|
||||
gui_base->set_anchor(MARGIN_RIGHT, Control::ANCHOR_END);
|
||||
gui_base->set_anchor(MARGIN_BOTTOM, Control::ANCHOR_END);
|
||||
gui_base->set_anchor(SIDE_RIGHT, Control::ANCHOR_END);
|
||||
gui_base->set_anchor(SIDE_BOTTOM, Control::ANCHOR_END);
|
||||
gui_base->set_end(Point2(0, 0));
|
||||
|
||||
main_vbox = memnew(VBoxContainer);
|
||||
gui_base->add_child(main_vbox);
|
||||
main_vbox->set_anchors_and_margins_preset(Control::PRESET_WIDE, Control::PRESET_MODE_MINSIZE, 8);
|
||||
main_vbox->set_anchors_and_offsets_preset(Control::PRESET_WIDE, Control::PRESET_MODE_MINSIZE, 8);
|
||||
main_vbox->add_theme_constant_override("separation", 8 * EDSCALE);
|
||||
|
||||
menu_hb = memnew(HBoxContainer);
|
||||
|
||||
Reference in New Issue
Block a user