mirror of
https://github.com/emilk/egui.git
synced 2026-06-26 22:53:14 -04:00
Bug fix: accidental reuse of Id:s for columns
Fixes https://github.com/emilk/egui/issues/37
This commit is contained in:
@@ -849,11 +849,7 @@ impl Ui {
|
||||
pos,
|
||||
pos2(pos.x + column_width, self.max_rect.right_bottom().y),
|
||||
);
|
||||
|
||||
Self {
|
||||
id: self.make_child_id(&("column", col_idx)),
|
||||
..self.child_ui(child_rect, self.layout)
|
||||
}
|
||||
self.child_ui(child_rect, self.layout)
|
||||
})
|
||||
.collect();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user