Merge pull request #10492 from Rubonnek/fix-segfault-on-arch-linux
Fixed segfault when hovering over tree elements and showing tooltips.
This commit is contained in:
commit
d8cd849a43
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