mirror of
https://github.com/swaywm/sway.git
synced 2025-11-03 09:01:43 -05:00
bindings: defer while initiailizing
This adds the logic to defer binding execution while sway is still initializing. Without this, the binding command would be executed, but the command handler would return CMD_DEFER, which was being treated as a failure to run. To avoid partial executions, this will defer all bindings while config->active is false.
This commit is contained in:
parent
2b5bf78faf
commit
9670ccee68
6 changed files with 47 additions and 2 deletions
|
|
@ -559,8 +559,20 @@ struct cmd_results *cmd_unbindswitch(int argc, char **argv) {
|
|||
* Execute the command associated to a binding
|
||||
*/
|
||||
void seat_execute_command(struct sway_seat *seat, struct sway_binding *binding) {
|
||||
sway_log(SWAY_DEBUG, "running command for binding: %s", binding->command);
|
||||
if (!config->active) {
|
||||
sway_log(SWAY_DEBUG, "deferring command for binding: %s",
|
||||
binding->command);
|
||||
struct sway_binding *deferred = calloc(1, sizeof(struct sway_binding));
|
||||
if (!deferred) {
|
||||
sway_log(SWAY_ERROR, "Failed to allocate deferred binding");
|
||||
return;
|
||||
}
|
||||
memcpy(deferred, binding, sizeof(struct sway_binding));
|
||||
list_add(seat->deferred_bindings, deferred);
|
||||
return;
|
||||
}
|
||||
|
||||
sway_log(SWAY_DEBUG, "running command for binding: %s", binding->command);
|
||||
struct sway_container *con = NULL;
|
||||
if (binding->type == BINDING_MOUSESYM
|
||||
|| binding->type == BINDING_MOUSECODE) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue