dragboard keyboard settings fix

Courtesy of @lauzonhomeschool
master
thyttan 2023-09-12 12:17:28 +02:00
parent 9e2b05afd6
commit b6ec2a4761
3 changed files with 3 additions and 2 deletions

View File

@ -7,3 +7,4 @@
0.07: Settings for display colors 0.07: Settings for display colors
0.08: Catch and discard swipe events on fw2v19 and up (as well as some cutting 0.08: Catch and discard swipe events on fw2v19 and up (as well as some cutting
edge 2v18 ones), allowing compatability with the Back Swipe app. edge 2v18 ones), allowing compatability with the Back Swipe app.
0.09: Fix colors settings, where color was stored as string instead of the expected int.

View File

@ -1,6 +1,6 @@
{ "id": "dragboard", { "id": "dragboard",
"name": "Dragboard", "name": "Dragboard",
"version":"0.08", "version":"0.09",
"description": "A library for text input via swiping keyboard", "description": "A library for text input via swiping keyboard",
"icon": "app.png", "icon": "app.png",
"type":"textinput", "type":"textinput",

View File

@ -21,7 +21,7 @@
value: settings[key] == color, value: settings[key] == color,
onchange: () => { onchange: () => {
if (color >= 0) { if (color >= 0) {
settings[key] = color; settings[key] = parseInt(color);
} else { } else {
delete settings[key]; delete settings[key];
} }