fix(wallpaper): fill and fit scaling modes flipped in UI

This commit is contained in:
Michael Aaron Murphy 2024-01-30 19:29:36 +01:00 committed by Michael Murphy
parent 78425b6513
commit cff91ea1a4

View file

@ -48,8 +48,8 @@ use image::{ImageBuffer, Rgba};
use slotmap::{DefaultKey, SecondaryMap, SlotMap};
use static_init::dynamic;
const FIT: usize = 0;
const ZOOM: usize = 1;
const ZOOM: usize = 0;
const FIT: usize = 1;
const SIMULATED_WIDTH: u16 = 300;
const SIMULATED_HEIGHT: u16 = 169;