Fix "enable_object_picking" disables editor tooltips

"enable_object_picking" was linked to Viewport's set_fixed_process() and controlled processing of  NOTIFICATION_FIXED_PROCESS which handles physics_object_picking, tooltips and debug drawing collision contacts. Fixes #8347
This commit is contained in:
Bartłomiej T. Listwon 2017-10-04 20:11:55 +02:00
parent 0f9e1b5f0c
commit 924cd6c56d

View file

@ -349,6 +349,8 @@ void Viewport::_notification(int p_what) {
} break;
case NOTIFICATION_READY: {
set_fixed_process(true);
#ifndef _3D_DISABLED
if (listeners.size() && !listener) {
Listener *first = NULL;
@ -2347,7 +2349,6 @@ Rect2 Viewport::get_render_target_to_screen_rect() const {
void Viewport::set_physics_object_picking(bool p_enable) {
physics_object_picking = p_enable;
set_fixed_process(physics_object_picking);
if (!physics_object_picking)
physics_picking_events.clear();
}