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();
|
menu_close_root();
|
||||||
cursor_update_focus();
|
cursor_update_focus();
|
||||||
break;
|
break;
|
||||||
default:
|
default: {
|
||||||
char accelerator = keysym_to_char(syms->syms[i]);
|
char accelerator = keysym_to_char(syms->syms[i]);
|
||||||
if (accelerator == '\0') {
|
if (accelerator == '\0') {
|
||||||
continue;
|
continue;
|
||||||
|
|
@ -469,7 +469,7 @@ handle_menu_keys(struct keysyms *syms)
|
||||||
menu_call_selected_actions();
|
menu_call_selected_actions();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue