Merge branch 'master' of https://gitea.suz-ppk.ru/UltraGoose/BreweryControlSystem
commit
a3554d10c4
|
|
@ -1,7 +1,6 @@
|
||||||
use std::{
|
use std::{
|
||||||
collections::{HashMap, HashSet},
|
collections::{HashMap, HashSet},
|
||||||
default::Default,
|
default::Default,
|
||||||
ops::Deref,
|
|
||||||
str::FromStr,
|
str::FromStr,
|
||||||
sync::Arc,
|
sync::Arc,
|
||||||
};
|
};
|
||||||
|
|
@ -56,10 +55,6 @@ impl Default for App<'_> {
|
||||||
tab_type: TabTypes::Recipe,
|
tab_type: TabTypes::Recipe,
|
||||||
title: "Рецепты".to_owned(),
|
title: "Рецепты".to_owned(),
|
||||||
},
|
},
|
||||||
Tab {
|
|
||||||
tab_type: TabTypes::Product,
|
|
||||||
title: "Продукция".to_owned(),
|
|
||||||
},
|
|
||||||
Tab {
|
Tab {
|
||||||
tab_type: TabTypes::Settings,
|
tab_type: TabTypes::Settings,
|
||||||
title: "Настройки".to_owned(),
|
title: "Настройки".to_owned(),
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,6 @@ use egui::mutex::RwLock;
|
||||||
use egui_extras::{Column, TableBuilder};
|
use egui_extras::{Column, TableBuilder};
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
use std::default::Default;
|
use std::default::Default;
|
||||||
use std::ops::Deref;
|
|
||||||
use std::str::FromStr;
|
use std::str::FromStr;
|
||||||
use std::sync::Arc;
|
use std::sync::Arc;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue