mirror of https://github.com/espruino/BangleApps
fixed bug that caused rolled dice on the right of screen to be writ off-screen
parent
f2c900f8e1
commit
fe010d949c
|
@ -1,2 +1,3 @@
|
||||||
0.90: got most of the features done, lacking some polish and real-hardware testing
|
0.90: got most of the features done, lacking some polish and real-hardware testing
|
||||||
1.00: overhauled the whole app, made some margins larger to be easier to tap on
|
1.00: overhauled the whole app, made some margins larger to be easier to tap on
|
||||||
|
1.01: fixed bug that caused rolled dice on the right of screen to be writ off-screen
|
||||||
|
|
|
@ -105,7 +105,7 @@ function rollDice() {
|
||||||
|
|
||||||
if (SELECTION_ARRAY [i] != 0) {
|
if (SELECTION_ARRAY [i] != 0) {
|
||||||
|
|
||||||
g.drawString ((" " + resultsArr [i]).slice (-3), 96, 10 + 40 * i);
|
g.drawString ((" " + resultsArr [i]).slice (-3), 96, 10 + 40 * (i - 4));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{ "id": "multidice",
|
{ "id": "multidice",
|
||||||
"name": "multiple dice roller",
|
"name": "multiple dice roller",
|
||||||
"shortName":"multidice",
|
"shortName":"multidice",
|
||||||
"version":"1.00",
|
"version":"1.01",
|
||||||
"description": "roll anywhere from 1-8 dice at the same time",
|
"description": "roll anywhere from 1-8 dice at the same time",
|
||||||
"icon": "app.png",
|
"icon": "app.png",
|
||||||
"tags": "tool,game",
|
"tags": "tool,game",
|
||||||
|
|
Loading…
Reference in New Issue