mirror of
https://github.com/emilk/egui.git
synced 2026-06-27 07:03:14 -04:00
Fix Id clash in Frame styling widget (#4967)
As we have two Margin widgets in the same UI and this widget has a Grid with a hardcoded Id, we have to force a different Id to one of them to avoid clashes. * Closes <https://github.com/emilk/egui/issues/4965> * [x] I have followed the instructions in the PR template
This commit is contained in:
@@ -2501,7 +2501,8 @@ impl Widget for &mut crate::Frame {
|
||||
ui.end_row();
|
||||
|
||||
ui.label("Outer margin");
|
||||
ui.add(outer_margin);
|
||||
// Push Id to avoid clashes in the Margin widget's Grid
|
||||
ui.push_id("outer", |ui| ui.add(outer_margin));
|
||||
ui.end_row();
|
||||
|
||||
ui.label("Rounding");
|
||||
|
||||
Reference in New Issue
Block a user