From 01dadfada6ab9fbc8085ee565b494e2dfe043081 Mon Sep 17 00:00:00 2001 From: kovacsv Date: Thu, 11 Nov 2021 14:51:36 +0100 Subject: [PATCH] Fix missing semicolon. --- website/o3dv/js/navigatorpanels.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/o3dv/js/navigatorpanels.js b/website/o3dv/js/navigatorpanels.js index b6bf602..99e5048 100644 --- a/website/o3dv/js/navigatorpanels.js +++ b/website/o3dv/js/navigatorpanels.js @@ -708,6 +708,6 @@ OV.NavigatorMeshesPanel = class extends OV.NavigatorPanel IsolateMesh (meshInstanceId) { this.ShowAllMeshes (false); - this.ToggleMeshVisibility (meshInstanceId) + this.ToggleMeshVisibility (meshInstanceId); } };