enable titlebar feature

This commit is contained in:
yggverse 2024-09-18 21:22:00 +03:00
parent 12915b846f
commit ec4f6095f2

View File

@ -9,7 +9,7 @@ pub fn new(app: &Application) -> ApplicationWindow
return ApplicationWindow::builder().application(app)
.default_width(640)
.default_height(480)
//.titlebar(&header::new())
.titlebar(&header::new())
.child(&main::new())
.build();
}