Merge pull request #3487 from TheHX/issue-3461

Fix Tree Slider disappearing when clicking on it
This commit is contained in:
Rémi Verschelde 2016-01-27 17:28:07 +01:00
commit 928156652c
1 changed files with 2 additions and 0 deletions

View File

@ -1730,6 +1730,8 @@ void Tree::_text_editor_modal_close() {
return;
}
if (value_editor->has_point(value_editor->get_local_mouse_pos()))
return;
text_editor_enter(text_editor->get_text());
}