Change summary
crates/debugger_ui/src/debugger_panel.rs | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
Detailed changes
@@ -1313,11 +1313,13 @@ impl Render for DebugPanel {
}
v_flex()
- .when_else(
- self.position(window, cx) == DockPosition::Bottom,
- |this| this.max_h(self.size),
- |this| this.max_w(self.size),
- )
+ .when(!self.is_zoomed, |this| {
+ this.when_else(
+ self.position(window, cx) == DockPosition::Bottom,
+ |this| this.max_h(self.size),
+ |this| this.max_w(self.size),
+ )
+ })
.size_full()
.key_context("DebugPanel")
.child(h_flex().children(self.top_controls_strip(window, cx)))