1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 22:53:14 -04:00

Don't round row sizes again in Galley::concat

This commit is contained in:
Hubert Głuchowski
2025-04-01 15:29:06 +02:00
parent 00ed9c1547
commit 48e4e8ca92

View File

@@ -774,9 +774,11 @@ impl Galley {
pub(crate) fn round_output_to_gui(&mut self) {
for placed_row in &mut self.rows {
// NOTE: we round the size, but not the position, because the position should be _pixel_ aligned.
let row = Arc::make_mut(&mut placed_row.row);
row.size = row.size.round_ui();
// Optimization: only call `make_mut` if necessary (can cause a deep clone)
let rounded_size = placed_row.row.size.round_ui();
if placed_row.row.size != rounded_size {
Arc::make_mut(&mut placed_row.row).size = rounded_size;
}
}
let rect = &mut self.rect;