From 68e6464beab66131d2f11f7912504e944afd52e0 Mon Sep 17 00:00:00 2001 From: Jason Lee Date: Thu, 1 Aug 2024 20:28:02 +0800 Subject: [PATCH] Fix pane bottom offset in scroll mode. --- crates/workspace/src/pane.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/workspace/src/pane.rs b/crates/workspace/src/pane.rs index 1c74bbf3..5f299a3f 100644 --- a/crates/workspace/src/pane.rs +++ b/crates/workspace/src/pane.rs @@ -910,6 +910,7 @@ impl Render for Pane { div.v_flex() .id("pane-item-container") .size_full() + .overflow_y_scroll() .child(item.to_any()) } else { div.id("pane-item-container")