mirror of
https://github.com/labwc/labwc.git
synced 2025-11-05 13:29:58 -05:00
Fix trivial coding style breaches
This commit is contained in:
parent
8e1f115486
commit
5b34c81768
22 changed files with 151 additions and 91 deletions
|
|
@ -37,7 +37,8 @@ keybind_create(const char *keybind)
|
|||
k->modifiers |= modifier;
|
||||
} else {
|
||||
xkb_keysym_t sym = xkb_keysym_to_lower(
|
||||
xkb_keysym_from_name(symname, XKB_KEYSYM_CASE_INSENSITIVE));
|
||||
xkb_keysym_from_name(symname,
|
||||
XKB_KEYSYM_CASE_INSENSITIVE));
|
||||
if (sym == XKB_KEY_NoSymbol) {
|
||||
wlr_log(WLR_ERROR, "unknown keybind (%s)", symname);
|
||||
free(k);
|
||||
|
|
|
|||
|
|
@ -173,7 +173,6 @@ get_accel_profile(const char *s)
|
|||
static void
|
||||
fill_libinput_category(char *nodename, char *content)
|
||||
{
|
||||
|
||||
if (!strcmp(nodename, "category.device.libinput")) {
|
||||
current_libinput_category = libinput_category_create();
|
||||
}
|
||||
|
|
@ -214,14 +213,17 @@ fill_libinput_category(char *nodename, char *content)
|
|||
LIBINPUT_CONFIG_TAP_DISABLED;
|
||||
} else if (!strcasecmp(nodename, "tapButtonMap")) {
|
||||
if (!strcmp(content, "lrm")) {
|
||||
current_libinput_category->tap_button_map = LIBINPUT_CONFIG_TAP_MAP_LRM;
|
||||
current_libinput_category->tap_button_map =
|
||||
LIBINPUT_CONFIG_TAP_MAP_LRM;
|
||||
} else if (!strcmp(content, "lmr")) {
|
||||
current_libinput_category->tap_button_map = LIBINPUT_CONFIG_TAP_MAP_LMR;
|
||||
current_libinput_category->tap_button_map =
|
||||
LIBINPUT_CONFIG_TAP_MAP_LMR;
|
||||
} else {
|
||||
wlr_log(WLR_ERROR, "invalid tapButtonMap");
|
||||
}
|
||||
} else if (!strcasecmp(nodename, "accelProfile")) {
|
||||
current_libinput_category->accel_profile = get_accel_profile(content);
|
||||
current_libinput_category->accel_profile =
|
||||
get_accel_profile(content);
|
||||
} else if (!strcasecmp(nodename, "middleEmulation")) {
|
||||
current_libinput_category->middle_emu = get_bool(content) ?
|
||||
LIBINPUT_CONFIG_MIDDLE_EMULATION_ENABLED :
|
||||
|
|
@ -690,7 +692,6 @@ no_config:
|
|||
void
|
||||
rcxml_finish(void)
|
||||
{
|
||||
|
||||
zfree(rc.font_name_activewindow);
|
||||
zfree(rc.font_name_menuitem);
|
||||
zfree(rc.font_name_osd);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue