Yoda/src/app/browser/window/header/bar/control/widget.rs
2024-11-28 01:35:48 +02:00

17 lines
326 B
Rust

use gtk::{PackType, WindowControls};
pub struct Widget {
pub gobject: WindowControls,
}
impl Widget {
// Construct
pub fn new() -> Self {
Self {
gobject: WindowControls::builder()
.side(PackType::End)
.margin_end(4)
.build(),
}
}
}