Message ID | A30978CA-E667-488E-9309-F9323CB90D6B@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 03/10/2016 07:28 PM, Programmingkid wrote: > Add the power and keypad equal keys. These keys are found on a real Macintosh > keyboard. > > Signed-off-by: John Arbuckle <programmingkidx@gmail.com> This looks unchanged from v3: https://lists.gnu.org/archive/html/qemu-devel/2016-03/msg01244.html which means you could have added my Reviewed-by from that mail series.
On Mar 11, 2016, at 12:12 PM, Eric Blake wrote: > On 03/10/2016 07:28 PM, Programmingkid wrote: >> Add the power and keypad equal keys. These keys are found on a real Macintosh >> keyboard. >> >> Signed-off-by: John Arbuckle <programmingkidx@gmail.com> > > This looks unchanged from v3: > > https://lists.gnu.org/archive/html/qemu-devel/2016-03/msg01244.html > > which means you could have added my Reviewed-by from that mail series. I must have forgotten. Sorry.
diff --git a/qapi-schema.json b/qapi-schema.json index 362c9d8..cbc3576 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3078,6 +3078,7 @@ # # 'unmapped' and 'pause' since 2.0 # 'ro' and 'kp_comma' since 2.4 +# 'kp_equals' and 'power' since 2.6 ## { 'enum': 'QKeyCode', 'data': [ 'unmapped', @@ -3096,7 +3097,7 @@ 'left', 'up', 'down', 'right', 'insert', 'delete', 'stop', 'again', 'props', 'undo', 'front', 'copy', 'open', 'paste', 'find', 'cut', 'lf', 'help', 'meta_l', 'meta_r', 'compose', 'pause', 'ro', - 'kp_comma' ] } + 'kp_comma', 'kp_equals', 'power' ] } ## # @KeyValue
Add the power and keypad equal keys. These keys are found on a real Macintosh keyboard. Signed-off-by: John Arbuckle <programmingkidx@gmail.com> --- qapi-schema.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)