Fix incorrect workspace order

This commit is contained in:
Nate Butler 2023-09-11 11:42:54 -04:00
parent 1376115db2
commit 04fc9d2d33

View file

@ -50,9 +50,9 @@ impl WorkspaceElement {
.flex_col()
.flex_1()
.child(tab_bar(self.tab_bar_scroll_state.clone())),
)
.child(collab_panel(self.right_scroll_state.clone())),
),
),
)
.child(collab_panel(self.right_scroll_state.clone())),
)
.child(statusbar())
}