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

@ -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;