From 6c35387b8d98be39e9416ff423b1c55c2af0c1bf Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Mon, 14 Oct 2019 10:56:23 -0700 Subject: [PATCH] also fix DEV-2083 --- interface/resources/qml/Web3DSurface.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/interface/resources/qml/Web3DSurface.qml b/interface/resources/qml/Web3DSurface.qml index 5f49fe399a..3340226761 100644 --- a/interface/resources/qml/Web3DSurface.qml +++ b/interface/resources/qml/Web3DSurface.qml @@ -36,6 +36,8 @@ Item { // Ensure we reset any existing item to "about:blank" to ensure web audio stops: DEV-2375 if (root.item != null) { root.item.url = "about:blank" + root.item.destroy() + root.item = null } QmlSurface.load("./controls/WebView.qml", root, function(newItem) { root.item = newItem