Просмотр исходного кода

Fix scrolling putting the world height in meters into the world height box

It should put the height in the currently chosen unit into the input box
tags/v0.0.4
Fen Dweller 6 лет назад
Родитель
Сommit
70515a0047
1 измененных файлов: 2 добавлений и 2 удалений
  1. +2
    -2
      macrovision.js

+ 2
- 2
macrovision.js Просмотреть файл

@@ -304,9 +304,9 @@ function updateWorldOptions(entity, view) {
const heightInput = document.querySelector("#options-height-value"); const heightInput = document.querySelector("#options-height-value");
const heightSelect = document.querySelector("#options-height-unit"); const heightSelect = document.querySelector("#options-height-unit");


const converted = config.height.to(heightSelect.value);
const converted = config.height.toNumber(heightSelect.value);


heightInput.value = math.round(converted.value, 3);
heightInput.value = math.round(converted, 3);
} }
function configEntityOptions(entity, view) { function configEntityOptions(entity, view) {
const holder = document.querySelector("#options-entity"); const holder = document.querySelector("#options-entity");


Загрузка…
Отмена
Сохранить