sway

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

commit bb6c9f52c789a7058dbff6a3abb80f8ff5d778ba
parent 0a4735c50cbdb7cc60f8cdf1d0240bda37d63033
Author: Drew DeVault <sir@cmpwn.com>
Date:   Sat, 20 Oct 2018 01:16:24 +0200

Merge pull request #2884 from c-edw/feature/2867_FixScalingParameter

Prevent overriding background mode after it's been set.
Diffstat:
Mswaylock/main.c | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/swaylock/main.c b/swaylock/main.c @@ -385,7 +385,6 @@ static void load_image(char *arg, struct swaylock_state *state) { return; } wl_list_insert(&state->images, &image->link); - state->args.mode = BACKGROUND_MODE_FILL; wlr_log(WLR_DEBUG, "Loaded image %s for output %s", image->path, image->output_name ? image->output_name : "*"); } @@ -851,7 +850,7 @@ int main(int argc, char **argv) { enum line_mode line_mode = LM_LINE; state.args = (struct swaylock_args){ - .mode = BACKGROUND_MODE_SOLID_COLOR, + .mode = BACKGROUND_MODE_FILL, .font = strdup("sans-serif"), .radius = 50, .thickness = 10,