Skip to content

Commit caa9200

Browse files
committed
debugging print outs
1 parent d5a1c81 commit caa9200

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

button.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,7 @@ namespace user_interface_base {
213213
}
214214

215215
reportAria(force = false) {
216+
basic.showString("Button.reportAria")
216217
const msg: accessibility.TileAccessibilityMessage = {
217218
type: "tile",
218219
value: this.ariaId,

navigator.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,11 @@ namespace user_interface_base {
227227

228228
basic.showString("I")
229229
const index = this.widths.slice(0, this.row).reduce((p, c) => p + c, 0)
230-
basic.showNumber(index)
230+
231+
basic.showString("S")
232+
basic.showNumber(this.buttonGroups[0].length)
233+
basic.showString("I")
234+
basic.showNumber(index + this.col)
231235
const btn = this.buttonGroups[0][index + this.col]
232236
this.reportAria(btn)
233237
return btn

0 commit comments

Comments
 (0)