mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
fix variable name
This commit is contained in:
parent
c466982fbc
commit
44f8d99dd2
1 changed files with 2 additions and 2 deletions
|
|
@ -16,7 +16,7 @@ impl Request {
|
|||
pub fn new(
|
||||
text: Option<GString>,
|
||||
action_update: Arc<SimpleAction>,
|
||||
tab_page_reload: Arc<SimpleAction>,
|
||||
action_tab_page_reload: Arc<SimpleAction>,
|
||||
) -> Self {
|
||||
// GTK
|
||||
let widget = Entry::builder()
|
||||
|
|
@ -36,7 +36,7 @@ impl Request {
|
|||
});
|
||||
|
||||
widget.connect_activate(move |_| {
|
||||
tab_page_reload.activate(None);
|
||||
action_tab_page_reload.activate(None);
|
||||
});
|
||||
|
||||
// Result
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue