diff options
author | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2021-11-11 15:30:20 +0800 |
---|---|---|
committer | Soopyboo32 <49228220+Soopyboo32@users.noreply.github.com> | 2021-11-11 15:30:20 +0800 |
commit | 9e7bedbd8bedd5599a756cce9cad76754f9a2e74 (patch) | |
tree | e78d23b5e52859c029118d647511345a8fb0d1e2 /features/settings | |
parent | cd85af68f5af559d869097306cf063a628b19f6f (diff) | |
download | SoopyV2-9e7bedbd8bedd5599a756cce9cad76754f9a2e74.tar.gz SoopyV2-9e7bedbd8bedd5599a756cce9cad76754f9a2e74.tar.bz2 SoopyV2-9e7bedbd8bedd5599a756cce9cad76754f9a2e74.zip |
Fixes to many things
Diffstat (limited to 'features/settings')
-rw-r--r-- | features/settings/settingThings/textSetting.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/features/settings/settingThings/textSetting.js b/features/settings/settingThings/textSetting.js index 4960461..4666fbf 100644 --- a/features/settings/settingThings/textSetting.js +++ b/features/settings/settingThings/textSetting.js @@ -15,7 +15,7 @@ class TextSetting extends SettingBase { this.guiObject.text.setLocation(0, 0, 0.6, 0.6) this.guiObject.description.setLocation(0, 0.6, 0.55, 0.4) - this.textObject.addEvent(new SoopyContentChangeEvent().setHandler((newVal, oldVal, resetFun)=>{ + this.textObject.text.addEvent(new SoopyContentChangeEvent().setHandler((newVal, oldVal, resetFun)=>{ this.setValue(newVal) })) |