diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2009-01-05 17:12:43 -0300 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2009-01-05 17:12:43 -0300 |
commit | f7fc073ac0de5326cffee25fd3e94c4d0b385136 (patch) | |
tree | ec3b76e4436c6266369151308155705c822b66ea /src/uicmd.cc | |
parent | 58e0045791b62f309066e446a314cd26bc277a8b (diff) |
Added a right-click menu to the form submit button (allows to show hiddens)
Diffstat (limited to 'src/uicmd.cc')
-rw-r--r-- | src/uicmd.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/uicmd.cc b/src/uicmd.cc index f8869129..654f1277 100644 --- a/src/uicmd.cc +++ b/src/uicmd.cc @@ -668,9 +668,10 @@ void a_UIcmd_image_popup(void *vbw, const DilloUrl *url, bool_t loaded_img, /* * Pop up the form menu */ -void a_UIcmd_form_popup(void *vbw, const DilloUrl *url, void *vform) +void a_UIcmd_form_popup(void *vbw, const DilloUrl *url, void *vform, + bool_t showing_hiddens) { - a_Menu_form_popup((BrowserWindow*)vbw, url, vform); + a_Menu_form_popup((BrowserWindow*)vbw, url, vform, showing_hiddens); } /* |