remove some empty rows
parent
867a673302
commit
05a56ec67e
|
|
@ -47,7 +47,6 @@ exports.input = function(options) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateTopString() {
|
function updateTopString() {
|
||||||
|
|
||||||
g.setColor(BGCOLOR);
|
g.setColor(BGCOLOR);
|
||||||
g.fillRect(0,4+20,176,13+20);
|
g.fillRect(0,4+20,176,13+20);
|
||||||
g.setColor(0.2,0,0);
|
g.setColor(0.2,0,0);
|
||||||
|
|
@ -69,7 +68,6 @@ exports.input = function(options) {
|
||||||
var largeCharOffset = 6;
|
var largeCharOffset = 6;
|
||||||
|
|
||||||
function resetChars(char, HLPrev, typePadding, heightDivisor, rowColor) {
|
function resetChars(char, HLPrev, typePadding, heightDivisor, rowColor) {
|
||||||
|
|
||||||
// Small character in list
|
// Small character in list
|
||||||
g.setColor(rowColor);
|
g.setColor(rowColor);
|
||||||
g.setFont(SMALLFONT);
|
g.setFont(SMALLFONT);
|
||||||
|
|
@ -82,7 +80,6 @@ exports.input = function(options) {
|
||||||
// mark in the list
|
// mark in the list
|
||||||
}
|
}
|
||||||
function showChars(char, HL, typePadding, heightDivisor) {
|
function showChars(char, HL, typePadding, heightDivisor) {
|
||||||
|
|
||||||
// mark in the list
|
// mark in the list
|
||||||
g.setColor(HLCOLOR);
|
g.setColor(HLCOLOR);
|
||||||
g.setFont(SMALLFONT);
|
g.setFont(SMALLFONT);
|
||||||
|
|
@ -122,7 +119,6 @@ exports.input = function(options) {
|
||||||
resolve(text);
|
resolve(text);
|
||||||
},
|
},
|
||||||
drag: function(event) {
|
drag: function(event) {
|
||||||
|
|
||||||
// ABCDEFGHIJKLMNOPQRSTUVWXYZ
|
// ABCDEFGHIJKLMNOPQRSTUVWXYZ
|
||||||
// Choose character by draging along red rectangle at bottom of screen
|
// Choose character by draging along red rectangle at bottom of screen
|
||||||
if (event.y >= ( (R.y+R.h) - 12 )) {
|
if (event.y >= ( (R.y+R.h) - 12 )) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue