1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-01 14:20:04 -04:00

Respect LayoutJob::round_output_size_to_nearest_ui_point

This commit is contained in:
Fishhh
2024-11-30 17:49:59 +01:00
parent 66c83c31ce
commit 1be24ba470
3 changed files with 26 additions and 15 deletions

View File

@@ -841,6 +841,13 @@ impl GalleyCache {
}
}
if merged_galley.job.round_output_size_to_nearest_ui_point {
super::round_output_size_to_nearest_ui_point(
&mut merged_galley.rect,
&merged_galley.job,
);
}
merged_galley
}