From 54491cfd099bcd3d094b658cce1945aa51114769 Mon Sep 17 00:00:00 2001 From: Azgaar Date: Tue, 22 Oct 2024 23:04:57 +0200 Subject: [PATCH] feat: zones editor - don't close other editors on open --- index.html | 2 +- modules/ui/zones-editor.js | 2 +- versioning.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 41afe3b6..96b9374e 100644 --- a/index.html +++ b/index.html @@ -8101,7 +8101,7 @@ - + diff --git a/modules/ui/zones-editor.js b/modules/ui/zones-editor.js index d575a544..85888c4e 100644 --- a/modules/ui/zones-editor.js +++ b/modules/ui/zones-editor.js @@ -1,7 +1,7 @@ "use strict"; function editZones() { - closeDialogs(); + closeDialogs("#zonesEditor, .stable"); if (!layerIsOn("toggleZones")) toggleZones(); const body = byId("zonesBodySection"); diff --git a/versioning.js b/versioning.js index 076de37c..fcd5504b 100644 --- a/versioning.js +++ b/versioning.js @@ -12,7 +12,7 @@ * * Example: 1.102.2 -> Major version 1, Minor version 102, Patch version 2 */ -const VERSION = "1.105.19"; +const VERSION = "1.105.20"; if (parseMapVersion(VERSION) !== VERSION) alert("versioning.js: Invalid format or parsing function"); {