Skip to content

Commit

Permalink
Use textLayoutOverwrite everywhere instead of textLayoutOverwrites. F…
Browse files Browse the repository at this point in the history
…ixes other keyboards, too.
  • Loading branch information
bhearsum committed Dec 18, 2012
1 parent f755f0d commit 9aa21c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/keyboard/js/keyboard.js
Expand Up @@ -625,7 +625,7 @@ function modifyLayout(keyboardName) {

// adds . and , to both sides of the space bar
case 'text':
var overwrites = layout.textLayoutOverwrites || {};
var overwrites = layout.textLayoutOverwrite || {};
var next = c + 1;
if (overwrites['.'] !== false) {
space.ratio -= 1;
Expand Down
2 changes: 1 addition & 1 deletion apps/keyboard/js/layout.js
Expand Up @@ -697,7 +697,7 @@ const Keyboards = {
S: 'ŚŠŞ',
n: 'ńñň'
},
textLayoutOverwrites: {
textLayoutOverwrite: {
',': "'",
'.': false
},
Expand Down

0 comments on commit 9aa21c2

Please sign in to comment.