Skip to content

Commit 327de49

Browse files
committed
debugging print outs
1 parent 37639fc commit 327de49

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

navigator.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,6 @@ namespace user_interface_base {
168168

169169
public addButtons(btns: Button[]) {
170170
this.buttonGroups[0].concat(btns)
171-
basic.showNumber(this.buttonGroups[0].length)
172171
}
173172

174173
public move(dir: CursorDir) {
@@ -217,9 +216,9 @@ namespace user_interface_base {
217216
}
218217
}
219218

220-
const index = this.widths.slice(0, this.row).reduce((p, c) => p + c, 0);
219+
const index = this.widths.slice(0, this.row).reduce((p, c) => p + c, 0)
221220

222-
const btn = this.buttonGroups[0][index + this.col];
221+
const btn = this.buttonGroups[0][index + this.col]
223222
this.reportAria(btn)
224223
return btn
225224
}

0 commit comments

Comments
 (0)