Change summary
crates/gpui/src/platform/linux/wayland/client.rs | 1 +
crates/gpui/src/platform/linux/x11/client.rs | 1 +
2 files changed, 2 insertions(+)
Detailed changes
@@ -1403,6 +1403,7 @@ impl Dispatch<wl_keyboard::WlKeyboard, ()> for WaylandClientStatePtr {
state.repeat.current_keycode = None;
}
+ println!("\nWayland Key released: {:#?}", input);
drop(state);
focused_window.handle_input(input);
}
@@ -1128,6 +1128,7 @@ impl X11Client {
}
keystroke
};
+ println!("\nX11 Key released: {:#?}", keystroke);
drop(state);
window.handle_input(PlatformInput::KeyUp(crate::KeyUpEvent { keystroke }));
}