kbswipe 0.04: Fix issue if going back without typing.
parent
d04674305e
commit
dac9410b04
|
|
@ -1,3 +1,4 @@
|
||||||
0.01: New App!
|
0.01: New App!
|
||||||
0.02: Now keeps user input trace intact by changing how the screen is updated.
|
0.02: Now keeps user input trace intact by changing how the screen is updated.
|
||||||
0.03: Positioning of marker now takes the height of the widget field into account.
|
0.03: Positioning of marker now takes the height of the widget field into account.
|
||||||
|
0.04: Fix issue if going back without typing.
|
||||||
|
|
|
||||||
|
|
@ -130,7 +130,7 @@ exports.getStrokes( (id,s) => Bangle.strokes[id] = Unistroke.new(s) );
|
||||||
show();
|
show();
|
||||||
}, back:()=>{
|
}, back:()=>{
|
||||||
Bangle.removeListener("stroke", strokeHandler);
|
Bangle.removeListener("stroke", strokeHandler);
|
||||||
clearInterval(flashInterval);
|
if (flashInterval) clearInterval(flashInterval);
|
||||||
Bangle.setUI();
|
Bangle.setUI();
|
||||||
g.clearRect(Bangle.appRect);
|
g.clearRect(Bangle.appRect);
|
||||||
resolve(text);
|
resolve(text);
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
{ "id": "kbswipe",
|
{ "id": "kbswipe",
|
||||||
"name": "Swipe keyboard",
|
"name": "Swipe keyboard",
|
||||||
"version":"0.03",
|
"version":"0.04",
|
||||||
"description": "A library for text input via PalmOS style swipe gestures (beta!)",
|
"description": "A library for text input via PalmOS style swipe gestures (beta!)",
|
||||||
"icon": "app.png",
|
"icon": "app.png",
|
||||||
"type":"textinput",
|
"type":"textinput",
|
||||||
"tags": "keyboard",
|
"tags": "keyboard",
|
||||||
"supports" : ["BANGLEJS2"],
|
"supports" : ["BANGLEJS2"],
|
||||||
"screenshots": [{"url":"screenshot.png"}],
|
"screenshots": [{"url":"screenshot.png"}],
|
||||||
"readme": "README.md",
|
"readme": "README.md",
|
||||||
"storage": [
|
"storage": [
|
||||||
{"name":"textinput","url":"lib.js"}
|
{"name":"textinput","url":"lib.js"}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue