sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit ecfef1348aeacc5a815a22c011ad09e5bb8ff49c
parent 6b2aa8324681b2623f660c3851397761df9b70dc
Author: Simon Ser <contact@emersion.fr>
Date:   Mon,  5 Feb 2024 11:05:52 +0100

commands/primary_selection: drop duplicate bool parsing

Diffstat:
Msway/commands/primary_selection.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sway/commands/primary_selection.c b/sway/commands/primary_selection.c @@ -17,7 +17,7 @@ struct cmd_results *cmd_primary_selection(int argc, char **argv) { "primary_selection can only be enabled/disabled at launch"); } - config->primary_selection = parse_boolean(argv[0], true); + config->primary_selection = primary_selection; return cmd_results_new(CMD_SUCCESS, NULL); }