Compare commits
No commits in common. "d0e54c29c0f6a04f7f7d0c4ae0b8d7d7552279f4" and "1dab85377e342c4b96c21c014a64b5ddcd98fc69" have entirely different histories.
d0e54c29c0
...
1dab85377e
|
|
@ -1,6 +1,7 @@
|
|||
use std::{
|
||||
collections::{HashMap, HashSet},
|
||||
default::Default,
|
||||
ops::Deref,
|
||||
str::FromStr,
|
||||
sync::Arc,
|
||||
};
|
||||
|
|
@ -55,6 +56,10 @@ impl Default for App<'_> {
|
|||
tab_type: TabTypes::Recipe,
|
||||
title: "Рецепты".to_owned(),
|
||||
},
|
||||
Tab {
|
||||
tab_type: TabTypes::Product,
|
||||
title: "Продукция".to_owned(),
|
||||
},
|
||||
Tab {
|
||||
tab_type: TabTypes::Settings,
|
||||
title: "Настройки".to_owned(),
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@ use egui::mutex::RwLock;
|
|||
use egui_extras::{Column, TableBuilder};
|
||||
use std::collections::HashMap;
|
||||
use std::default::Default;
|
||||
use std::ops::Deref;
|
||||
use std::str::FromStr;
|
||||
use std::sync::Arc;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue