(button)
| 1143 | } |
| 1144 | |
| 1145 | rightStillDown(button) { |
| 1146 | let now = Time.ticks; |
| 1147 | if (now - this.clock.uiValueChangedMS > SETTING_ITER1_MS) { |
| 1148 | button.lastModeChanged = now; |
| 1149 | trace(`rightStillDown\n`); |
| 1150 | this.clock.uiValueChanged = 1; |
| 1151 | this.clock.incrementSetting(); |
| 1152 | this.clock.uiValueChangedMS = now; |
| 1153 | } |
| 1154 | } |
| 1155 | |
| 1156 | leftPressed(button) { |
| 1157 | trace(`leftPressed - clear value changed now: ${Time.ticks}\n`); |
nothing calls this directly
no test coverage detected