a temporary fix for vfs/delete

This commit is contained in:
kepler155c@gmail.com
2020-05-07 21:34:50 -06:00
parent 4e6c5172d1
commit 8b14399a20
7 changed files with 25 additions and 23 deletions

View File

@@ -16,7 +16,7 @@ UI.Checkbox.defaults = {
height = 1,
width = 3,
accelerators = {
space = 'checkbox_toggle',
[ ' ' ] = 'checkbox_toggle',
mouse_click = 'checkbox_toggle',
}
}

View File

@@ -14,7 +14,7 @@ UI.CheckboxGrid.defaults = {
UIElement = 'CheckboxGrid',
checkedKey = 'checked',
accelerators = {
space = 'grid_toggle',
[ ' ' ] = 'grid_toggle',
key_enter = 'grid_toggle',
},
}

View File

@@ -15,7 +15,7 @@ UI.Chooser.defaults = {
rightIndicator = UI.extChars and '\187' or '>',
height = 1,
accelerators = {
space = 'choice_next',
[ ' ' ] = 'choice_next',
right = 'choice_next',
left = 'choice_prev',
}