From e6dfd06634d9d7930585b920bdaea62f0ac4c92d Mon Sep 17 00:00:00 2001 From: jcid Date: Sat, 3 Nov 2007 21:31:59 +0100 Subject: Fixed following image links after loading the image. --- src/nav.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/nav.c') diff --git a/src/nav.c b/src/nav.c index cb57f868..1abd1844 100644 --- a/src/nav.c +++ b/src/nav.c @@ -189,12 +189,12 @@ static void Nav_open_url(BrowserWindow *bw, const DilloUrl *url, int offset) /* Get the url of the current page */ idx = a_Nav_stack_ptr(bw); old_url = a_History_get_url(NAV_UIDX(bw, idx)); - MSG("Nav_open_url: idx=%d old_url='%s'\n", idx, URL_STR(old_url)); + _MSG("Nav_open_url: idx=%d old_url='%s'\n", idx, URL_STR(old_url)); /* Record current scrolling position */ if (old_url) { a_UIcmd_get_scroll_xy(bw, &x, &y); Nav_set_scroll_pos(bw, idx, x, y); - MSG("Nav_open_url: saved scroll of '%s' at x=%d y=%d\n", + _MSG("Nav_open_url: saved scroll of '%s' at x=%d y=%d\n", URL_STR(old_url), x, y); } @@ -279,7 +279,7 @@ void a_Nav_expect_done(BrowserWindow *bw) /* Scroll to were we were in this page */ Nav_get_scroll_pos(bw, &posx, &posy); a_UIcmd_set_scroll_xy(bw, posx, posy); - MSG("Nav: expect_done scrolling to x=%d y=%d\n", posx, posy); + _MSG("Nav: expect_done scrolling to x=%d y=%d\n", posx, posy); } Nav_stack_clean(bw); a_UIcmd_set_buttons_sens(bw); -- cgit v1.2.3