diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-06-24 22:43:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-24 22:43:26 +0200 |
commit | fd895f4bc0569670f07b7c4ce349a2f596fdcee0 (patch) | |
tree | 3cb161c61edea55a7f4eb633b740297f8753e569 | |
parent | 8c483886d2facd2801d76332c0437f408dcec605 (diff) | |
parent | 9f2f1f5e3d367cae9f310a64099f031bb8e9f297 (diff) |
Merge pull request #30045 from akien-mga/fix-gcc5-build-after-29376
Fix scoped enum value reference, breaks GCC 5
-rw-r--r-- | editor/editor_layouts_dialog.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_layouts_dialog.cpp b/editor/editor_layouts_dialog.cpp index 01e4762196..36f7b30016 100644 --- a/editor/editor_layouts_dialog.cpp +++ b/editor/editor_layouts_dialog.cpp @@ -120,7 +120,7 @@ EditorLayoutsDialog::EditorLayoutsDialog() { layout_names->set_anchor_and_margin(MARGIN_LEFT, ANCHOR_BEGIN, 5); layout_names->set_anchor_and_margin(MARGIN_RIGHT, ANCHOR_END, -5); layout_names->set_v_size_flags(Control::SIZE_EXPAND_FILL); - layout_names->set_select_mode(ItemList::SelectMode::SELECT_MULTI); + layout_names->set_select_mode(ItemList::SELECT_MULTI); layout_names->set_allow_rmb_select(true); name = memnew(LineEdit); |