diff options
Diffstat (limited to 'src/uicmd.cc')
-rw-r--r-- | src/uicmd.cc | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/uicmd.cc b/src/uicmd.cc index 60381867..15207408 100644 --- a/src/uicmd.cc +++ b/src/uicmd.cc @@ -868,6 +868,14 @@ void a_UIcmd_back(void *vbw) } /* + * Send the browser back to previous page in a new tab + */ +void a_UIcmd_back_nt(void *vbw) +{ + a_Nav_back_nt((BrowserWindow*)vbw); +} + +/* * Popup the navigation menu of the Back button */ void a_UIcmd_back_popup(void *vbw, int x, int y) @@ -884,6 +892,14 @@ void a_UIcmd_forw(void *vbw) } /* + * Send the browser to next page in the history list in new tab + */ +void a_UIcmd_forw_nt(void *vbw) +{ + a_Nav_forw_nt((BrowserWindow*)vbw); +} + +/* * Popup the navigation menu of the Forward button */ void a_UIcmd_forw_popup(void *vbw, int x, int y) |