We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 356026c commit 168fd86Copy full SHA for 168fd86
crates/egui/src/atomics/atom_layout.rs
@@ -392,6 +392,8 @@ impl<'atom> AllocatedAtomLayout<'atom> {
392
393
for sized in sized_atoms {
394
let size = sized.size;
395
+ // TODO(lucasmerlin): This is not ideal, since this might lead to accumulated rounding errors
396
+ // https://github.com/emilk/egui/pull/5830#discussion_r2079627864
397
let growth = if sized.is_grow() { grow_width } else { 0.0 };
398
399
let frame = aligned_rect
0 commit comments