diff options
author | Tony Crisci <[email protected]> | 2018-01-20 11:44:34 -0500 |
---|---|---|
committer | Tony Crisci <[email protected]> | 2018-01-20 11:44:34 -0500 |
commit | cc3c713889e529c74888d9cd89af7039bfbae20c (patch) | |
tree | f40da3a0fc2639b6a22bdb0e323106f66d27ec45 /sway/config.c | |
parent | 9e0595f26bcca2a4d0aa735c4cd9fc4f792918bf (diff) |
seat config handler context
Diffstat (limited to 'sway/config.c')
-rw-r--r-- | sway/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/config.c b/sway/config.c index 54357625..2683d6bc 100644 --- a/sway/config.c +++ b/sway/config.c @@ -484,6 +484,7 @@ bool load_include_configs(const char *path, struct sway_config *config) { void config_clear_handler_context(struct sway_config *config) { free_input_config(config->handler_context.input_config); + free_seat_config(config->handler_context.seat_config); memset(&config->handler_context, 0, sizeof(config->handler_context)); } @@ -604,7 +605,6 @@ bool read_config(FILE *file, struct sway_config *config) { case CMD_BLOCK_SEAT: wlr_log(L_DEBUG, "End of seat block"); - current_seat_config = NULL; block = CMD_BLOCK_END; break; |