Fix bottom dock resizing

Antonio Scandurra created

Change summary

crates/workspace/src/dock.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

crates/workspace/src/dock.rs 🔗

@@ -78,7 +78,7 @@ impl DockPosition {
     fn to_resizable_side(self) -> Side {
         match self {
             Self::Left => Side::Right,
-            Self::Bottom => Side::Bottom,
+            Self::Bottom => Side::Top,
             Self::Right => Side::Left,
         }
     }