debugger: Tighten up breakpoint list (#33645)

Release Notes:

- N/A
This commit is contained in:
Piotr Osiewicz 2025-06-30 14:49:09 +02:00 committed by GitHub
parent aa7ccecc49
commit 8c04f12499
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 32 additions and 6 deletions

View file

@ -1298,6 +1298,11 @@ 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),
)
.size_full()
.key_context("DebugPanel")
.child(h_flex().children(self.top_controls_strip(window, cx)))