mirror of
https://github.com/Acamaeda/The-Modding-Tree.git
synced 2024-12-04 13:51:31 +00:00
Fixed new option
This commit is contained in:
parent
f31e345f2f
commit
43ad19764b
3 changed files with 5 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
||||||
# The Modding Tree changelog:
|
# The Modding Tree changelog:
|
||||||
|
|
||||||
|
# v2.6.6.1 = 9/8/21
|
||||||
|
- Fixed options not updating when new ones are added.
|
||||||
|
|
||||||
# v2.6.6 - 9/7/21
|
# v2.6.6 - 9/7/21
|
||||||
- Added option for shift-clicking nodes toggling their tooltips.
|
- Added option for shift-clicking nodes toggling their tooltips.
|
||||||
- Fixed NaN check for setting Decimal values with text boxes.
|
- Fixed NaN check for setting Decimal values with text boxes.
|
||||||
|
|
|
@ -3,7 +3,7 @@ var needCanvasUpdate = true;
|
||||||
|
|
||||||
// Don't change this
|
// Don't change this
|
||||||
const TMT_VERSION = {
|
const TMT_VERSION = {
|
||||||
tmtNum: "2.6.6",
|
tmtNum: "2.6.6.1",
|
||||||
tmtName: "Fixed Reality"
|
tmtName: "Fixed Reality"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -223,6 +223,7 @@ function loadOptions() {
|
||||||
else
|
else
|
||||||
options = getStartOptions()
|
options = getStartOptions()
|
||||||
if (themes.indexOf(options.theme) < 0) theme = "default"
|
if (themes.indexOf(options.theme) < 0) theme = "default"
|
||||||
|
fixData(options, getStartOptions())
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue