From ad206a6a979155dc4db1a5386ff33d131d320b39 Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Tue, 10 Jun 2025 22:00:20 -0600 Subject: [PATCH] Recenter current stack frame on click (#32508) Release Notes: - debugger: Recenter current stack frame on click --- crates/project/src/debugger/breakpoint_store.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/project/src/debugger/breakpoint_store.rs b/crates/project/src/debugger/breakpoint_store.rs index fbe8fd11f0e062ebfa16511dd2d076b2fe78f365..c39fa43850c8e9e08740b594031adf52032e5ed5 100644 --- a/crates/project/src/debugger/breakpoint_store.rs +++ b/crates/project/src/debugger/breakpoint_store.rs @@ -665,6 +665,7 @@ impl BreakpointStore { .as_ref() .is_some_and(|active_position| active_position == &position) { + cx.emit(BreakpointStoreEvent::SetDebugLine); return; }