diff options
author | Gilles Roudiere <gilles.roudiere@laas.fr> | 2017-08-17 10:59:21 +0200 |
---|---|---|
committer | Gilles Roudiere <gilles.roudiere@laas.fr> | 2017-08-17 10:59:21 +0200 |
commit | dea845b65c37845898c5554aba20729bdeb6ba42 (patch) | |
tree | e6de7c8456d31130630a58d9735dcdf26215f082 | |
parent | 2e54c5372d2ff0894107fe877e579084fb1943a2 (diff) |
Fix progress dialog's bars overflowing.
-rw-r--r-- | editor/progress_dialog.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/editor/progress_dialog.cpp b/editor/progress_dialog.cpp index 51a40faf37..980afee447 100644 --- a/editor/progress_dialog.cpp +++ b/editor/progress_dialog.cpp @@ -155,9 +155,10 @@ void ProgressDialog::_popup() { Ref<StyleBox> style = get_stylebox("panel", "PopupMenu"); ms += style->get_minimum_size(); - for (int i = 0; i < 4; i++) { - main->set_margin(Margin(i), style->get_margin(Margin(i))); - } + main->set_margin(MARGIN_LEFT, style->get_margin(MARGIN_LEFT)); + main->set_margin(MARGIN_RIGHT, -style->get_margin(MARGIN_RIGHT)); + main->set_margin(MARGIN_TOP, style->get_margin(MARGIN_TOP)); + main->set_margin(MARGIN_BOTTOM, -style->get_margin(MARGIN_BOTTOM)); popup_centered(ms); } |