mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 00:55:28 +00:00
add history submenu
This commit is contained in:
parent
7ebcbde01b
commit
2d81cf7954
4 changed files with 49 additions and 36 deletions
|
|
@ -87,12 +87,12 @@ impl Window {
|
|||
self.tab.page_navigation_home(page_position);
|
||||
}
|
||||
|
||||
pub fn tab_page_navigation_history_back(&self) {
|
||||
self.tab.page_navigation_history_back();
|
||||
pub fn tab_page_navigation_history_back(&self, page_position: Option<i32>) {
|
||||
self.tab.page_navigation_history_back(page_position);
|
||||
}
|
||||
|
||||
pub fn tab_page_navigation_history_forward(&self) {
|
||||
self.tab.page_navigation_history_forward();
|
||||
pub fn tab_page_navigation_history_forward(&self, page_position: Option<i32>) {
|
||||
self.tab.page_navigation_history_forward(page_position);
|
||||
}
|
||||
|
||||
/// Reload page at given position or selected page on `None` given
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue