1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-31 22:00:03 -04:00

Make RawInput.max_texture_side an Option

This commit is contained in:
Emil Ernerfeldt
2022-02-22 13:21:28 +01:00
parent 76f564428b
commit 745f209c61
5 changed files with 21 additions and 9 deletions

View File

@@ -144,7 +144,7 @@ impl State {
start_time: instant::Instant::now(),
egui_input: egui::RawInput {
pixels_per_point: Some(pixels_per_point),
max_texture_side,
max_texture_side: Some(max_texture_side),
..Default::default()
},
pointer_pos_in_points: None,