diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2017-11-07 10:14:14 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2017-11-07 10:14:14 +0000 |
commit | ef2088f9af16d3a19f5f094da160dd8ba52231a9 (patch) | |
tree | 5f65842763a83c81c4a9c07e7a27d033543ea30e /ui | |
parent | 5929e36cac16a366d5ffeb4b09287e864a10ea8b (diff) | |
download | qemu-ef2088f9af16d3a19f5f094da160dd8ba52231a9.zip qemu-ef2088f9af16d3a19f5f094da160dd8ba52231a9.tar.gz qemu-ef2088f9af16d3a19f5f094da160dd8ba52231a9.tar.bz2 |
ui/cocoa.m: Send ctrl-alt key combos to guest if QEMU isn't using them
Send those ctrl-alt key combos that QEMU doesn't treat specially to
the guest rather than ignoring them.
All the case where we do special handling of ctrl-alt-X exit the
event handling using a "return" statement, so we can simply allow
the rest to fall through into the normal key handling by deleting
the now-spurious "else".
We take the opportunity to clean up some oddly-formatted and
now rather uninformative comments by removing them.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'ui')
-rw-r--r-- | ui/cocoa.m | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -704,12 +704,10 @@ QemuCocoaView *cocoaView; return; } } + } - // handle keys for graphic console - } else if (qemu_console_is_graphic(NULL)) { + if (qemu_console_is_graphic(NULL)) { qemu_input_event_send_key_qcode(dcl->con, keycode, true); - - // handlekeys for Monitor } else { [self handleMonitorInput: event]; } |