1
1
Fork 0
mirror of https://github.com/swaywm/sway synced 2024-06-01 22:16:34 +02:00

Only destroy swaybar surface via ipc when needed

This commit is contained in:
Bill Doyle 2020-02-26 23:36:14 -05:00 committed by Drew DeVault
parent 2045ac3472
commit 920d85d35f

View File

@ -528,8 +528,10 @@ static bool handle_barconfig_update(struct swaybar *bar, const char *payload,
ipc_get_workspaces(bar);
}
bool moving_layer = strcmp(oldcfg->mode, newcfg->mode) != 0;
free_config(oldcfg);
determine_bar_visibility(bar, true);
determine_bar_visibility(bar, moving_layer);
return true;
}