Skip to content

Commit f01601f

Browse files
committed
debugging print outs
1 parent c9c8d78 commit f01601f

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

button.ts

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

215215
reportAria(force = false) {
216-
basic.showString("Ba")
216+
basic.showString("R")
217217
const msg: accessibility.TileAccessibilityMessage = {
218218
type: "tile",
219219
value: this.ariaId,

cursor.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ namespace user_interface_base {
5353
}
5454

5555
public moveTo(pos: Vec2, ariaId: string, sizeHint: Bounds) {
56-
basic.showString("CM")
56+
basic.showString("M")
5757

5858
if (this.resetOutlineColourOnMove)
5959
this.setOutlineColour(DEFAULT_CURSOR_OUTLINE_COLOUR)

navigator.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,6 @@ namespace user_interface_base {
193193
if (this.widths[this.row] <= this.col)
194194
this.col = this.widths[this.row] - 1
195195

196-
197196
basic.showNumber(this.row)
198197
basic.showString("C")
199198
basic.showNumber(this.col)
@@ -231,7 +230,7 @@ namespace user_interface_base {
231230
// basic.showNumber(this.buttonGroups[0].length)
232231
// basic.showString("I")
233232
// basic.showNumber(index + this.col)
234-
const btn = this.buttonGroups[0][index + this.col - 1]
233+
const btn = this.buttonGroups[0][index + this.col]
235234
this.reportAria(btn)
236235
return btn
237236
}

0 commit comments

Comments
 (0)