diff options
| author | Violet Purcell <vimproved@inventati.org> | 2024-02-03 12:12:37 -0500 |
|---|---|---|
| committer | Simon Ser <contact@emersion.fr> | 2024-02-09 18:23:03 +0100 |
| commit | 1c07868f2fddf2e959e615a8302b3a61b3625003 (patch) | |
| tree | 55821b63835b7abba5ca480ecc383e78651ebc48 | |
| parent | ff67f5f35298157dfc4461a5332fc2f58b3260d6 (diff) | |
sway/config.c: only reset primary_selection at launch
Otherwise, an error will be shown whenever reloading due to the value of
primary_selection being reset to true.
(cherry picked from commit 6b2aa8324681b2623f660c3851397761df9b70dc)
| -rw-r--r-- | sway/config.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sway/config.c b/sway/config.c index 4b51dc73..099e0e81 100644 --- a/sway/config.c +++ b/sway/config.c @@ -475,6 +475,11 @@ bool load_main_config(const char *file, bool is_active, bool validating) { old_config->xwayland ? "enabled" : "disabled"); config->xwayland = old_config->xwayland; + // primary_selection can only be enabled/disabled at launch + sway_log(SWAY_DEBUG, "primary_selection will remain %s", + old_config->primary_selection ? "enabled" : "disabled"); + config->primary_selection = old_config->primary_selection; + if (!config->validating) { if (old_config->swaybg_client != NULL) { wl_client_destroy(old_config->swaybg_client); |
