tree-wide: wrap a few extra-long lines

This commit is contained in:
John Lindgren 2026-03-05 21:36:02 -05:00 committed by Johan Malm
parent cb49bddf63
commit 8d46da9db1
5 changed files with 10 additions and 5 deletions

View file

@ -659,7 +659,8 @@ cursor_process_motion(uint32_t time, double *sx, double *sy)
* moving/resizing the wrong view
*/
mousebind->pressed_in_context = false;
actions_run(seat->pressed.ctx.view, &mousebind->actions, &seat->pressed.ctx);
actions_run(seat->pressed.ctx.view,
&mousebind->actions, &seat->pressed.ctx);
}
}

View file

@ -245,7 +245,8 @@ match_keybinding(struct keyinfo *keyinfo,
{
if (!is_virtual) {
/* First try keycodes */
struct keybind *keybind = match_keybinding_for_sym(keyinfo->modifiers, XKB_KEY_NoSymbol, keyinfo->xkb_keycode);
struct keybind *keybind = match_keybinding_for_sym(
keyinfo->modifiers, XKB_KEY_NoSymbol, keyinfo->xkb_keycode);
if (keybind) {
wlr_log(WLR_DEBUG, "keycode matched");
return keybind;