Skip to content

Commit

Permalink
Fix keyboard test page alignment
Browse files Browse the repository at this point in the history
"locale" was added to "uievents" which caused the columns to get mis-aligned.
  • Loading branch information
garykac committed Aug 4, 2018
1 parent 006fddb commit 548b0e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/key-event-viewer.js
Expand Up @@ -239,7 +239,7 @@ function addEvent(eventinfo) {
addTableCellBoolean(row, eventinfo["isComposing"], "uievents");
addTableCellText(row, eventinfo["inputType"], "uievents");
addTableCellText(row, eventinfo["data"], "uievents");
addTableCellText(row, eventinfo["locale"], "uievents");
addTableCellText(row, eventinfo["locale"], "proposed");
addInputCell(row);
}

Expand Down

0 comments on commit 548b0e2

Please sign in to comment.