mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-02-06 00:14:13 +00:00
update page on history navigation without memory record
This commit is contained in:
parent
68764ab024
commit
45276dd304
@ -132,19 +132,26 @@ impl Page {
|
||||
|
||||
pub fn navigation_base(&self) {
|
||||
if let Some(url) = self.navigation.base_url() {
|
||||
// Update with history record
|
||||
self.action_page_open.activate(Some(&url.to_variant()));
|
||||
}
|
||||
}
|
||||
|
||||
pub fn navigation_history_back(&self) {
|
||||
if let Some(url) = self.navigation.history_back(true) {
|
||||
self.action_page_open.activate(Some(&url.to_variant()));
|
||||
if let Some(request) = self.navigation.history_back(true) {
|
||||
// Update without history record
|
||||
self.navigation.set_request_text(
|
||||
&request, true, // activate (page reload)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
pub fn navigation_history_forward(&self) {
|
||||
if let Some(url) = self.navigation.history_forward(true) {
|
||||
self.action_page_open.activate(Some(&url.to_variant()));
|
||||
if let Some(request) = self.navigation.history_forward(true) {
|
||||
// Update without history record
|
||||
self.navigation.set_request_text(
|
||||
&request, true, // activate (page reload)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user