From f7a0f06dffb655a3335981c0ca010f25ac18c39d Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Mon, 5 Feb 2024 11:07:33 +0100 Subject: [PATCH] commands: note how xwayland/primary_selection are reset on reload --- sway/commands/primary_selection.c | 2 ++ sway/commands/xwayland.c | 2 ++ 2 files changed, 4 insertions(+) diff --git a/sway/commands/primary_selection.c b/sway/commands/primary_selection.c index 3edef945..9e2689c2 100644 --- a/sway/commands/primary_selection.c +++ b/sway/commands/primary_selection.c @@ -12,6 +12,8 @@ struct cmd_results *cmd_primary_selection(int argc, char **argv) { bool primary_selection = parse_boolean(argv[0], true); + // config->primary_selection is reset to the previous value on reload in + // load_main_config() if (config->reloading && config->primary_selection != primary_selection) { return cmd_results_new(CMD_FAILURE, "primary_selection can only be enabled/disabled at launch"); diff --git a/sway/commands/xwayland.c b/sway/commands/xwayland.c index 6ca26923..584a8e3a 100644 --- a/sway/commands/xwayland.c +++ b/sway/commands/xwayland.c @@ -20,6 +20,8 @@ struct cmd_results *cmd_xwayland(int argc, char **argv) { xwayland = XWAYLAND_MODE_DISABLED; } + // config->xwayland is reset to the previous value on reload in + // load_main_config() if (config->reloading && config->xwayland != xwayland) { return cmd_results_new(CMD_FAILURE, "xwayland can only be enabled/disabled at launch");