mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Merge pull request #44605 from madmiraal/rename-control-margin
Rename Control margin to offset
This commit is contained in:
commit
c4c211c3b7
106 changed files with 1278 additions and 1278 deletions
|
@ -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);
|
||||
|
@ -5791,11 +5791,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);
|
||||
|
@ -5807,13 +5807,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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue