summaryrefslogtreecommitdiff
path: root/src/uicmd.cc
diff options
context:
space:
mode:
authorcorvid <corvid@lavabit.com>2011-09-16 22:10:03 +0000
committercorvid <corvid@lavabit.com>2011-09-16 22:10:03 +0000
commit729d5a773faaa9ba599ea307b36106dba9a6674c (patch)
tree8fc6a0dec7ceabcf6efdbeb22d92e0889afa36d4 /src/uicmd.cc
parent0124552c47cf81e1274c8f6125634df0959d7bb2 (diff)
position history menu below button
Diffstat (limited to 'src/uicmd.cc')
-rw-r--r--src/uicmd.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/uicmd.cc b/src/uicmd.cc
index 35463c57..180ce7d2 100644
--- a/src/uicmd.cc
+++ b/src/uicmd.cc
@@ -686,9 +686,9 @@ void a_UIcmd_back(void *vbw)
/*
* Popup the navigation menu of the Back button
*/
-void a_UIcmd_back_popup(void *vbw)
+void a_UIcmd_back_popup(void *vbw, int x, int y)
{
- a_Menu_history_popup((BrowserWindow*)vbw, -1);
+ a_Menu_history_popup((BrowserWindow*)vbw, x, y, -1);
}
/*
@@ -702,9 +702,9 @@ void a_UIcmd_forw(void *vbw)
/*
* Popup the navigation menu of the Forward button
*/
-void a_UIcmd_forw_popup(void *vbw)
+void a_UIcmd_forw_popup(void *vbw, int x, int y)
{
- a_Menu_history_popup((BrowserWindow*)vbw, 1);
+ a_Menu_history_popup((BrowserWindow*)vbw, x, y, 1);
}
/*