Merge pull request #14756 from godotengine/revert-14484-fix_mouse_focus_button_release

Revert "Fix mouse button release not sent to gui_input if it's different from the button that gave focus"
This commit is contained in:
Juan Linietsky 2017-12-16 19:50:57 -03:00 committed by GitHub
commit 83291eab3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -1811,8 +1811,7 @@ void Viewport::_gui_input_event(Ref<InputEvent> p_event) {
_gui_call_input(gui.mouse_focus, mb);
}
if (mb->get_button_mask() == 0) {
// Last mouse button was released
if (mb->get_button_index() == gui.mouse_focus_button) {
gui.mouse_focus = NULL;
gui.mouse_focus_button = -1;
}