1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-01 22:30:03 -04:00

More cleanup

This commit is contained in:
Konkitoman
2023-08-04 10:45:52 +03:00
parent 172be33b40
commit fbcb26827c
14 changed files with 268 additions and 295 deletions

View File

@@ -16,7 +16,7 @@ impl super::Demo for DancingStrings {
.open(open)
.default_size(vec2(512.0, 256.0))
.vscroll(false)
.show(ctx, |ui| Self::default().ui(ui));
.show(ctx, |ui| self.ui(ui));
}
}