Commit 20a7d7b2 authored by Bruno de Oliveira Abinader's avatar Bruno de Oliveira Abinader Committed by Paolo Angelelli
Browse files

Prevent creating the Mapbox GL node map if size is empty


Change-Id: I3fe2c7fecd8cf8036f84fed5c4875e39d937c9cd
Reviewed-by: default avatarPaolo Angelelli <paolo.angelelli@qt.io>
Showing with 5 additions and 0 deletions
......@@ -91,6 +91,11 @@ QSGNode *QGeoMapMapboxGLPrivate::updateSceneGraph(QSGNode *node, QQuickWindow *w
{
Q_Q(QGeoMapMapboxGL);
if (m_viewportSize.isEmpty()) {
delete node;
return 0;
}
QMapboxGL *map = 0;
if (m_useFBO) {
if (!node) {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment