Skip to content

Commit

Permalink
fix(wallpaper): fill and fit scaling modes flipped in UI
Browse files Browse the repository at this point in the history
  • Loading branch information
mmstick committed Jan 30, 2024
1 parent 78425b6 commit cff91ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/pages/desktop/wallpaper/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit cff91ea

Please sign in to comment.