control-q instead of q for exitting apps
This commit is contained in:
@@ -188,7 +188,7 @@ local mainPage = UI.Page({
|
||||
autospace = true,
|
||||
}),
|
||||
accelerators = {
|
||||
q = 'quit',
|
||||
[ 'control-q' ] = 'quit',
|
||||
},
|
||||
})
|
||||
|
||||
|
||||
@@ -52,7 +52,7 @@ local page = UI.Page {
|
||||
first = UI.Button { x = 2, y = 11, text = 'First', event = 'firstCoord' },
|
||||
cancel = UI.Button { x = 2, y = -3, text = 'Abort', event = 'cancel' },
|
||||
begin = UI.Button { x = -8, y = -3, text = 'Begin', event = 'begin' },
|
||||
accelerators = { q = 'quit' },
|
||||
accelerators = { [ 'control-q' ] = 'quit' },
|
||||
notification = UI.Notification(),
|
||||
statusBar = UI.StatusBar(),
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user