Bridge web surface keyboard input

This commit is contained in:
2026-05-08 14:49:57 -04:00
parent 292824dc10
commit 21a72e157a
9 changed files with 485 additions and 159 deletions
+2 -1
View File
@@ -156,7 +156,7 @@ fn render_input_overlay(
.absolute()
.size_full()
.occlude()
.capture_any_mouse_up(move |event, _window, cx| {
.capture_any_mouse_up(move |event, window, cx| {
if event.button != MouseButton::Left {
return;
}
@@ -165,6 +165,7 @@ fn render_input_overlay(
click_tab_id.clone(),
click_url.clone(),
event.position,
window,
cx,
);
});