Merge pull request #18922 from volzhs/fix-segfault

Fix segfault at quiting editor
This commit is contained in:
Juan Linietsky 2018-05-16 08:02:09 -03:00 committed by GitHub
commit 66dc73f3ca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -684,7 +684,7 @@ void ColorPickerButton::_notification(int p_what) {
draw_rect(r, color);
}
if (p_what == MainLoop::NOTIFICATION_WM_QUIT_REQUEST) {
if (p_what == MainLoop::NOTIFICATION_WM_QUIT_REQUEST && popup) {
popup->hide();
}
}