1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-28 07:23:13 -04:00

Add new Resize container

This commit is contained in:
Emil Ernerfeldt
2020-04-25 14:37:39 +02:00
parent 9ba5bea143
commit 3a430c8fc7
13 changed files with 262 additions and 31 deletions

View File

@@ -115,7 +115,7 @@ fn main() {
Window::new("Examples")
.default_pos(pos2(50.0, 100.0))
.default_size(vec2(300.0, 400.0))
.default_size(vec2(300.0, 600.0))
.show(region.ctx(), |region| {
example_app.ui(region);
});