apply rustfmt

This commit is contained in:
yggverse 2024-09-20 18:02:10 +03:00
parent e6e81e846a
commit f8d938a8af
24 changed files with 253 additions and 611 deletions

View file

@ -1,17 +1,15 @@
#[path = "main/tab.rs"] mod tab;
#[path = "main/tab.rs"]
mod tab;
use gtk::Box;
use gtk::prelude::BoxExt;
use gtk::Box;
pub fn new() -> Box
{
let main = Box::builder().orientation(
gtk::Orientation::Vertical
).build();
pub fn new() -> Box {
let main = Box::builder()
.orientation(gtk::Orientation::Vertical)
.build();
main.append(
&tab::new()
);
main.append(&tab::new());
return main;
}
main
}