merge stable version #2

Merged
doryan merged 97 commits from experimental into main 2024-08-28 18:54:00 +03:00
2 changed files with 0 additions and 19 deletions
Showing only changes of commit 32fd0305ad - Show all commits

View File

@ -4,6 +4,5 @@ pub mod input;
pub mod menu;
pub mod pages;
pub mod tabs;
pub mod wrapper;
use crate::model::builder_traits;

View File

@ -1,18 +0,0 @@
use gtk4 as gtk;
use gtk::{Orientation, builders::BoxBuilder, Box};
#[allow(dead_code)]
pub struct Wrapper;
impl Wrapper{
pub fn row_builder() -> BoxBuilder {
Box::builder().orientation(Orientation::Vertical)
}
pub fn col_builder() -> BoxBuilder {
Box::builder().orientation(Orientation::Horizontal)
}
}