Fix history context menu

This commit is contained in:
crschnick
2023-12-10 16:46:05 +00:00
parent 695d478878
commit 08bf3669ba
5 changed files with 52 additions and 21 deletions
@@ -19,7 +19,7 @@ public class BackAction implements LeafAction {
@Override
public void execute(OpenFileSystemModel model, List<BrowserEntry> entries) throws Exception {
model.backSync();
model.backSync(1);
}
@Override
@@ -19,7 +19,7 @@ public class ForwardAction implements LeafAction {
@Override
public void execute(OpenFileSystemModel model, List<BrowserEntry> entries) throws Exception {
model.forthSync();
model.forthSync(1);
}
@Override