diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-05-23 17:10:26 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-05-23 17:11:49 -0300 |
commit | d3495b128a700b6f830ec90ff0b544ad1333b867 (patch) | |
tree | 78d1a96d928f912e9d5e1f8502d7651c47e209b6 /scene/gui | |
parent | b777b32470fc7cba345f3ff2ee419074104f8f9b (diff) |
-Improve resource previews
-Also fixed draw_texture_rect() tile parameter
Diffstat (limited to 'scene/gui')
-rw-r--r-- | scene/gui/box_container.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/gui/box_container.cpp b/scene/gui/box_container.cpp index a9522cf248..a6ffc30a83 100644 --- a/scene/gui/box_container.cpp +++ b/scene/gui/box_container.cpp @@ -280,6 +280,7 @@ BoxContainer::AlignMode BoxContainer::get_alignment() const { void BoxContainer::add_spacer(bool p_begin) { Control *c = memnew( Control ); + c->set_stop_mouse(false); if (vertical) c->set_v_size_flags(SIZE_EXPAND_FILL); else |