mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-02 01:25:27 +00:00
add follow_to_index argument
This commit is contained in:
parent
359950540e
commit
cefdcdc859
2 changed files with 6 additions and 6 deletions
|
|
@ -127,13 +127,13 @@ impl Page {
|
|||
}
|
||||
|
||||
pub fn navigation_history_back(&self) {
|
||||
if let Some(url) = self.navigation.history_back() {
|
||||
if let Some(url) = self.navigation.history_back(true) {
|
||||
self.action_page_open.activate(Some(&url.to_variant()));
|
||||
}
|
||||
}
|
||||
|
||||
pub fn navigation_history_forward(&self) {
|
||||
if let Some(url) = self.navigation.history_forward() {
|
||||
if let Some(url) = self.navigation.history_forward(true) {
|
||||
self.action_page_open.activate(Some(&url.to_variant()));
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue