Fixed segfault when hovering over scene tree elements and showing tooltips.
This commit is contained in:
parent
35d5724519
commit
0017e21521
1 changed files with 4 additions and 0 deletions
|
@ -1456,6 +1456,10 @@ void Viewport::_gui_show_tooltip() {
|
|||
gui.tooltip_popup = NULL;
|
||||
}
|
||||
|
||||
if (!gui.tooltip) {
|
||||
return;
|
||||
}
|
||||
|
||||
Control *rp = gui.tooltip->get_root_parent_control();
|
||||
if (!rp)
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue