remove extra getters, give names to gobjects

This commit is contained in:
yggverse 2024-12-09 21:26:47 +02:00
parent ccbc82d2f5
commit ff3f064534
12 changed files with 22 additions and 40 deletions

View file

@ -116,7 +116,7 @@ impl Page {
pub fn home(&self) {
if let Some(url) = self.navigation.home.url() {
// Update with history record
self.tab_action.load().activate(Some(&url), true);
self.tab_action.load.activate(Some(&url), true);
}
}
@ -802,7 +802,7 @@ impl Page {
.set_title("Redirect");
// Reload page to apply redirection (without history record request)
tab_action.load().activate(None, false);
tab_action.load.activate(None, false);
}
},
Err(reason) => {