aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--src/html.cc2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 413e1465..f43f05e8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -53,6 +53,7 @@ dillo-fltk2
- Added a image-loading toggle button to the UI.
- Enabled hiding widgets of the control panel from dillorc2.
- Added a save-directory preference (save_dir in dillorc2).
+ - Fixed page-popup-menu to use the stack's top URL instead of base_url.
Patches: place
+- Fixed a problem with locally-installed dpis.
- Added code for optional image loading (nice interface) very advanced!
diff --git a/src/html.cc b/src/html.cc
index af0790ef..efc7ac59 100644
--- a/src/html.cc
+++ b/src/html.cc
@@ -758,7 +758,7 @@ bool DilloHtml::HtmlLinkReceiver::press (Widget *widget, int link, int img,
ret = true;
} else {
if (link == -1) {
- a_UIcmd_page_popup(bw, html->base_url,
+ a_UIcmd_page_popup(bw, a_History_get_url(NAV_TOP_UIDX(bw)),
bw->num_page_bugs ? bw->page_bugs->str:NULL);
ret = true;
} else {