Skip to content

Commit

Permalink
delete extra move request
Browse files Browse the repository at this point in the history
  • Loading branch information
yggverse committed Jan 22, 2025
1 parent 8059acd commit c6d68e5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ impl Form {
action_update.activate(None);
});

text_view.connect_realize(move |this| {
text_view.connect_realize(|this| {
this.grab_focus();
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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();
});

Expand Down
2 changes: 1 addition & 1 deletion src/app/browser/window/tab/item/page/input/titan/form.rs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ impl Form {
action_update.activate(None);
});

text_view.connect_realize(move |this| {
text_view.connect_realize(|this| {
this.grab_focus();
});

Expand Down

0 comments on commit c6d68e5

Please sign in to comment.