(setting)
| 399 | } |
| 400 | |
| 401 | #applySettings(setting) { |
| 402 | switch (setting) { |
| 403 | case "animation": |
| 404 | this.applyAnimationSetting(); |
| 405 | break; |
| 406 | |
| 407 | case "uiZoom": |
| 408 | this.applyUiZoomSetting(); |
| 409 | break; |
| 410 | |
| 411 | case "lang": |
| 412 | this.applyLangSetting(); |
| 413 | break; |
| 414 | |
| 415 | default: |
| 416 | break; |
| 417 | } |
| 418 | } |
| 419 | |
| 420 | async applyAnimationSetting() { |
| 421 | let value = this.value.animation; |
no test coverage detected