mirror of
https://github.com/Azgaar/Fantasy-Map-Generator.git
synced 2025-12-16 17:31:24 +01:00
v1.0.22
This commit is contained in:
parent
3af345001a
commit
78f3b2bb5b
2 changed files with 3 additions and 2 deletions
|
|
@ -415,7 +415,7 @@ input[type="color"]::-webkit-color-swatch-wrapper {
|
||||||
border: 0;
|
border: 0;
|
||||||
text-align: right;
|
text-align: right;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
width: 30px;
|
width: 3.3em;
|
||||||
-moz-appearance: textfield;
|
-moz-appearance: textfield;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -678,7 +678,7 @@ optionsContent.addEventListener("input", function(event) {
|
||||||
else if (id === "neutralOutput") neutralInput.value = value;
|
else if (id === "neutralOutput") neutralInput.value = value;
|
||||||
else if (id === "manorsInput") changeBurgsNumberSlider(value);
|
else if (id === "manorsInput") changeBurgsNumberSlider(value);
|
||||||
else if (id === "religionsInput") religionsOutput.value = value;
|
else if (id === "religionsInput") religionsOutput.value = value;
|
||||||
else if (id === "uiSizeInput" || id === "uiSizeOutput") changeUIsize(value);
|
else if (id === "uiSizeInput") uiSizeOutput.value = value;
|
||||||
else if (id === "tooltipSizeInput" || id === "tooltipSizeOutput") changeTooltipSize(value);
|
else if (id === "tooltipSizeInput" || id === "tooltipSizeOutput") changeTooltipSize(value);
|
||||||
else if (id === "transparencyInput") changeDialogsTransparency(value);
|
else if (id === "transparencyInput") changeDialogsTransparency(value);
|
||||||
else if (id === "pngResolutionInput") pngResolutionOutput.value = value;
|
else if (id === "pngResolutionInput") pngResolutionOutput.value = value;
|
||||||
|
|
@ -690,6 +690,7 @@ optionsContent.addEventListener("change", function(event) {
|
||||||
const id = event.target.id, value = event.target.value;
|
const id = event.target.id, value = event.target.value;
|
||||||
if (id === "zoomExtentMin" || id === "zoomExtentMax") changeZoomExtent(value);
|
if (id === "zoomExtentMin" || id === "zoomExtentMax") changeZoomExtent(value);
|
||||||
else if (id === "optionsSeed") generateMapWithSeed();
|
else if (id === "optionsSeed") generateMapWithSeed();
|
||||||
|
else if (id === "uiSizeInput" || id === "uiSizeOutput") changeUIsize(value);
|
||||||
});
|
});
|
||||||
|
|
||||||
optionsContent.addEventListener("click", function(event) {
|
optionsContent.addEventListener("click", function(event) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue