From 3d7cd77982d79ff798a92ebe7f3c0b2a52042cdf Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Sat, 8 Feb 2014 22:43:54 +0000 Subject: Simplify local history interface. --- amiga/gui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'amiga/gui.c') diff --git a/amiga/gui.c b/amiga/gui.c index 74aece866..3f937a6f2 100644 --- a/amiga/gui.c +++ b/amiga/gui.c @@ -1064,12 +1064,12 @@ void ami_gui_history(struct gui_window_2 *gwin, bool back) if(back == true) { if(browser_window_back_available(gwin->bw)) - history_back(gwin->bw, gwin->bw->history); + history_back(gwin->bw->history, false); } else { if(browser_window_forward_available(gwin->bw)) - history_forward(gwin->bw, gwin->bw->history); + history_forward(gwin->bw->history, false); } ami_update_buttons(gwin); -- cgit v1.2.3