delete extra move request

This commit is contained in:
yggverse 2025-01-22 13:59:09 +02:00
parent 8059acd0e8
commit c6d68e57b4
3 changed files with 3 additions and 3 deletions

View File

@ -47,7 +47,7 @@ impl Form {
action_update.activate(None);
});
text_view.connect_realize(move |this| {
text_view.connect_realize(|this| {
this.grab_focus();
});

View File

@ -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();
});

View File

@ -47,7 +47,7 @@ impl Form {
action_update.activate(None);
});
text_view.connect_realize(move |this| {
text_view.connect_realize(|this| {
this.grab_focus();
});