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
@ -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 New Issue
Block a user