1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-30 05:10:03 -04:00

Remove colons from widget gallery

This commit is contained in:
Emil Ernerfeldt
2024-12-28 23:26:26 +01:00
parent fa95351675
commit 2356ae8819
2 changed files with 4 additions and 5 deletions

View File

@@ -111,7 +111,7 @@ impl crate::Demo for CodeExample {
.min_width(375.0)
.default_size([390.0, 500.0])
.scroll(false)
.resizable([true, false])
.resizable([true, false]) // resizable so we can shrink if the text edit grows
.show(ctx, |ui| self.ui(ui));
}
}