Yoda/src/browser/main/mod.rs

15 lines
213 B
Rust
Raw Normal View History

2024-09-20 18:02:10 +03:00
mod tab;
2024-09-18 22:07:52 +03:00
use gtk::prelude::BoxExt;
2024-09-20 18:02:10 +03:00
use gtk::Box;
2024-09-18 20:33:29 +03:00
2024-09-20 18:02:10 +03:00
pub fn new() -> Box {
let main = Box::builder()
.orientation(gtk::Orientation::Vertical)
.build();
2024-09-18 22:07:52 +03:00
2024-09-20 18:02:10 +03:00
main.append(&tab::new());
2024-09-18 22:07:52 +03:00
2024-09-20 18:02:10 +03:00
main
}