1
0
Fork 0
forked from wry/wry

ei: fix region scale

This commit is contained in:
Julian Orth 2024-09-02 10:27:19 +02:00
parent 2579834a60
commit e4c1f0c1f7

View file

@ -96,7 +96,7 @@ impl EiDevice {
offset_y: rect.y1() as u32,
width: rect.width() as u32,
hight: rect.height() as u32,
scale: scale.to_f64() as f32,
scale: (1.0 / scale.to_f64()) as f32,
});
}