fix backspace in text widget

This commit is contained in:
airstruck
2015-12-06 11:47:15 -05:00
parent c21611748c
commit 367535ad33
32 changed files with 548 additions and 242 deletions

View File

@@ -14,7 +14,7 @@ return function (config)
slices = RESOURCE .. 'button.png',
minwidth = 24,
minheight = 24,
canFocus = true
focusable = true
},
button_hovered = {
slices = RESOURCE .. 'button_hovered.png'
@@ -94,7 +94,7 @@ return function (config)
padding = 6,
minwidth = 24,
minheight = 24,
canFocus = true,
focusable = true,
cursor = 'ibeam',
highlight = highlight,
},
@@ -102,7 +102,7 @@ return function (config)
slices = RESOURCE .. 'text_focused.png',
},
check = {
canFocus = true,
focusable = true,
},
['check.unchecked'] = {
icon = RESOURCE .. 'check_unchecked.png',
@@ -123,7 +123,7 @@ return function (config)
icon = RESOURCE .. 'check_checked_focused.png',
},
radio = {
canFocus = true,
focusable = true,
},
['radio.unchecked'] = {
icon = RESOURCE .. 'radio_unchecked.png',