mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-15 17:20:08 +00:00
remove extra conversion
This commit is contained in:
parent
8f1e94dd68
commit
3047102c87
@ -59,6 +59,7 @@ impl Page {
|
||||
action_tab_append.clone(),
|
||||
action_page_open.clone(),
|
||||
));
|
||||
|
||||
let navigation = Navigation::new_arc(
|
||||
action_tab_page_navigation_base.clone(),
|
||||
action_tab_page_navigation_history_back.clone(),
|
||||
@ -66,6 +67,7 @@ impl Page {
|
||||
action_tab_page_navigation_reload.clone(),
|
||||
action_update.clone(),
|
||||
);
|
||||
|
||||
let widget = Widget::new_arc(
|
||||
action_page_open.clone(),
|
||||
&name, // ID
|
||||
@ -81,17 +83,15 @@ impl Page {
|
||||
let navigation = navigation.clone();
|
||||
let action_tab_page_navigation_reload = action_tab_page_navigation_reload.clone();
|
||||
move |_, request| {
|
||||
// Convert to GString
|
||||
let request = GString::from(
|
||||
// Update request
|
||||
navigation.set_request_text(
|
||||
request
|
||||
.expect("Parameter required for `page.open` action")
|
||||
.get::<String>()
|
||||
.expect("Parameter does not match `String`"),
|
||||
.expect("Parameter does not match `String`")
|
||||
.as_str(),
|
||||
);
|
||||
|
||||
// Update
|
||||
navigation.set_request_text(&request);
|
||||
|
||||
// Reload page
|
||||
action_tab_page_navigation_reload.activate(None);
|
||||
}
|
||||
|
@ -158,7 +158,7 @@ impl Navigation {
|
||||
}
|
||||
|
||||
// Setters
|
||||
pub fn set_request_text(&self, value: &GString) {
|
||||
pub fn set_request_text(&self, value: &str) {
|
||||
// Focus out from content area on activate the link @TODO
|
||||
self.widget.focus();
|
||||
|
||||
|
@ -94,7 +94,7 @@ impl Request {
|
||||
}
|
||||
|
||||
// Setters
|
||||
pub fn set_text(&self, value: &GString) {
|
||||
pub fn set_text(&self, value: &str) {
|
||||
self.widget.set_text(value);
|
||||
}
|
||||
|
||||
|
@ -181,7 +181,7 @@ impl Widget {
|
||||
}
|
||||
|
||||
// Setters
|
||||
pub fn set_text(&self, value: &GString) {
|
||||
pub fn set_text(&self, value: &str) {
|
||||
self.gobject.set_text(value);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user