mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-03-13 06:01:21 +00:00
fix variable name
This commit is contained in:
parent
c466982fbc
commit
44f8d99dd2
@ -16,7 +16,7 @@ impl Request {
|
|||||||
pub fn new(
|
pub fn new(
|
||||||
text: Option<GString>,
|
text: Option<GString>,
|
||||||
action_update: Arc<SimpleAction>,
|
action_update: Arc<SimpleAction>,
|
||||||
tab_page_reload: Arc<SimpleAction>,
|
action_tab_page_reload: Arc<SimpleAction>,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
// GTK
|
// GTK
|
||||||
let widget = Entry::builder()
|
let widget = Entry::builder()
|
||||||
@ -36,7 +36,7 @@ impl Request {
|
|||||||
});
|
});
|
||||||
|
|
||||||
widget.connect_activate(move |_| {
|
widget.connect_activate(move |_| {
|
||||||
tab_page_reload.activate(None);
|
action_tab_page_reload.activate(None);
|
||||||
});
|
});
|
||||||
|
|
||||||
// Result
|
// Result
|
||||||
|
Loading…
x
Reference in New Issue
Block a user