From 6088b3b1371054ff06d7daceaed7d528d2c1aa8e Mon Sep 17 00:00:00 2001 From: Matthias Wirth Date: Thu, 16 Jan 2020 19:08:22 +0100 Subject: [PATCH] don't cut off list for !globeIndex --- html/script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/script.js b/html/script.js index 0ab97cb..7501c50 100644 --- a/html/script.js +++ b/html/script.js @@ -1869,7 +1869,7 @@ function refreshTableInfo() { tableplane.showInTable = true; } - if (!sidebarVisible || (nTablePlanes > globeTableLimit && mapIsVisible)) { + if (!sidebarVisible || (nTablePlanes > globeTableLimit && mapIsVisible && globeIndex)) { tableplane.showInTable = false; continue; }