diff options
author | jcid <devnull@localhost> | 2007-11-13 19:18:26 +0100 |
---|---|---|
committer | jcid <devnull@localhost> | 2007-11-13 19:18:26 +0100 |
commit | f2e9f4851b18d48d482a2b1429ad17c95f54365c (patch) | |
tree | 08103ecc69dc56dd065712a4284413a52a975ed9 | |
parent | 5aa7aef785d7115efeebc26842d3371f4c9d62e9 (diff) |
Fixed page-popup-menu to use the stack's top URL instead of base_url.
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | src/html.cc | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -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 { |