This commit is contained in:
Mikayla Maki 2023-06-15 14:51:38 -07:00
parent 6662066821
commit b9cb594626
No known key found for this signature in database
2 changed files with 15 additions and 15 deletions

View file

@ -100,7 +100,7 @@ impl Bind for DockStructure {
pub struct DockData {
pub(crate) visible: bool,
pub(crate) active_panel: Option<String>,
pub(crate) zoom: bool
pub(crate) zoom: bool,
}
impl Column for DockData {
@ -112,7 +112,7 @@ impl Column for DockData {
DockData {
visible: visible.unwrap_or(false),
active_panel,
zoom: zoom.unwrap_or(false)
zoom: zoom.unwrap_or(false),
},
next_index,
))