mirror of
https://github.com/labwc/labwc.git
synced 2026-04-17 06:46:28 -04:00
keyboard: fix "label followed by a declaration" error
This commit is contained in:
parent
9108809578
commit
ac72c105cc
1 changed files with 2 additions and 2 deletions
|
|
@ -460,7 +460,7 @@ handle_menu_keys(struct keysyms *syms)
|
|||
menu_close_root();
|
||||
cursor_update_focus();
|
||||
break;
|
||||
default:
|
||||
default: {
|
||||
char accelerator = keysym_to_char(syms->syms[i]);
|
||||
if (accelerator == '\0') {
|
||||
continue;
|
||||
|
|
@ -469,7 +469,7 @@ handle_menu_keys(struct keysyms *syms)
|
|||
menu_call_selected_actions();
|
||||
}
|
||||
break;
|
||||
}
|
||||
}}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue