diff --git a/src/app/browser/window/tab/item/page/input/response/form.rs b/src/app/browser/window/tab/item/page/input/response/form.rs index 64aa3b6b..b5ed8d73 100644 --- a/src/app/browser/window/tab/item/page/input/response/form.rs +++ b/src/app/browser/window/tab/item/page/input/response/form.rs @@ -47,7 +47,7 @@ impl Form { action_update.activate(None); }); - text_view.connect_realize(move |this| { + text_view.connect_realize(|this| { this.grab_focus(); }); diff --git a/src/app/browser/window/tab/item/page/input/sensitive/form.rs b/src/app/browser/window/tab/item/page/input/sensitive/form.rs index 1d6f44d4..056a441a 100644 --- a/src/app/browser/window/tab/item/page/input/sensitive/form.rs +++ b/src/app/browser/window/tab/item/page/input/sensitive/form.rs @@ -33,7 +33,7 @@ impl Form { action_send.activate(None); }); - password_entry_row.connect_realize(move |this| { + password_entry_row.connect_realize(|this| { this.grab_focus(); }); diff --git a/src/app/browser/window/tab/item/page/input/titan/form.rs b/src/app/browser/window/tab/item/page/input/titan/form.rs index 64aa3b6b..b5ed8d73 100644 --- a/src/app/browser/window/tab/item/page/input/titan/form.rs +++ b/src/app/browser/window/tab/item/page/input/titan/form.rs @@ -47,7 +47,7 @@ impl Form { action_update.activate(None); }); - text_view.connect_realize(move |this| { + text_view.connect_realize(|this| { this.grab_focus(); });