diff options
author | Drew DeVault <[email protected]> | 2018-07-24 14:44:01 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2018-07-24 14:44:01 -0400 |
commit | 817d37c95032946a2e508fcc33cfa5c7ed65cc0d (patch) | |
tree | 69fb79348eaff481fabaee4c2bb25991487d438b /sway/config.c | |
parent | 347f7cb4c1edb3c4a6c38ffb3f9dcdd98f37e475 (diff) | |
parent | c80258c3b394781c42cd4f2c161c705b2558c485 (diff) |
Merge pull request #2165 from swaywm/pid-workspaces
Implement pid->workspace tracking
Diffstat (limited to 'sway/config.c')
-rw-r--r-- | sway/config.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sway/config.c b/sway/config.c index c2310ff7..90dfb9a9 100644 --- a/sway/config.c +++ b/sway/config.c @@ -93,7 +93,6 @@ void free_config(struct sway_config *config) { } list_free(config->cmd_queue); list_free(config->workspace_outputs); - list_free(config->pid_workspaces); if (config->output_configs) { for (int i = 0; i < config->output_configs->length; i++) { free_output_config(config->output_configs->items[i]); @@ -163,7 +162,6 @@ static void config_defaults(struct sway_config *config) { if (!(config->modes = create_list())) goto cleanup; if (!(config->bars = create_list())) goto cleanup; if (!(config->workspace_outputs = create_list())) goto cleanup; - if (!(config->pid_workspaces = create_list())) goto cleanup; if (!(config->criteria = create_list())) goto cleanup; if (!(config->no_focus = create_list())) goto cleanup; if (!(config->input_configs = create_list())) goto cleanup; |