Prevent remoting dialog from losing focus (#11820)

Conrad Irwin created

Release Notes:

- N/A

Change summary

crates/recent_projects/src/dev_servers.rs | 3 +++
1 file changed, 3 insertions(+)

Detailed changes

crates/recent_projects/src/dev_servers.rs 🔗

@@ -992,6 +992,9 @@ impl Render for DevServerProjects {
             .on_mouse_down_out(cx.listener(|this, _, cx| {
                 if matches!(this.mode, Mode::Default(None)) {
                     cx.emit(DismissEvent)
+                } else {
+                    this.focus_handle(cx).focus(cx);
+                    cx.stop_propagation()
                 }
             }))
             .pb_4()