1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-11 13:10:58 +00:00

Project Manager: fix random breaking of scrolling

This commit is contained in:
Bernhard Liebl
2018-01-04 15:24:20 +01:00
parent 2488aff93f
commit 25c5848e7e

View File

@@ -1101,6 +1101,7 @@ void ProjectManager::_load_recent_projects() {
hb->add_child(vb); hb->add_child(vb);
Control *ec = memnew(Control); Control *ec = memnew(Control);
ec->set_custom_minimum_size(Size2(0, 1)); ec->set_custom_minimum_size(Size2(0, 1));
ec->set_mouse_filter(MOUSE_FILTER_PASS);
vb->add_child(ec); vb->add_child(ec);
Label *title = memnew(Label(project_name)); Label *title = memnew(Label(project_name));
title->add_font_override("font", gui_base->get_font("title", "EditorFonts")); title->add_font_override("font", gui_base->get_font("title", "EditorFonts"));