mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-05 21:15:59 +01:00
rootston: config.c 80 col
This commit is contained in:
parent
1db3b55128
commit
7072ac87fd
1 changed files with 2 additions and 1 deletions
|
@ -312,7 +312,8 @@ static int config_ini_handler(void *user, const char *section, const char *name,
|
||||||
}
|
}
|
||||||
} else if (strcmp(section, "keyboard") == 0) {
|
} else if (strcmp(section, "keyboard") == 0) {
|
||||||
config_handle_keyboard(config, "", name, value);
|
config_handle_keyboard(config, "", name, value);
|
||||||
} else if (strncmp(keyboard_prefix, section, strlen(keyboard_prefix)) == 0) {
|
} else if (strncmp(keyboard_prefix,
|
||||||
|
section, strlen(keyboard_prefix)) == 0) {
|
||||||
const char *device_name = section + strlen(keyboard_prefix);
|
const char *device_name = section + strlen(keyboard_prefix);
|
||||||
config_handle_keyboard(config, device_name, name, value);
|
config_handle_keyboard(config, device_name, name, value);
|
||||||
} else if (strcmp(section, "bindings") == 0) {
|
} else if (strcmp(section, "bindings") == 0) {
|
||||||
|
|
Loading…
Reference in a new issue