diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-05-18 17:52:45 +0200 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2009-05-18 17:52:45 +0200 |
commit | 2ea9718c0a3297ff91c1219b3e011a8a3367461f (patch) | |
tree | 64ea43d63fa8f91dd3080e26475204ddb11fab04 /src/menu.cc | |
parent | e949bbc7ed966ed47bebba5798756501bd285917 (diff) |
add support for --xid command line option
The --xid option is used by a plugin for the claws mail client
(http://www.claws-mail.org/) to embed the dillo window into the mailer
application to display HTML mails.
Diffstat (limited to 'src/menu.cc')
-rw-r--r-- | src/menu.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/menu.cc b/src/menu.cc index ba650268..6ce67848 100644 --- a/src/menu.cc +++ b/src/menu.cc @@ -86,7 +86,7 @@ static void filemenu_cb(Widget *wid, void *data) { if (strcmp((char*)data, "nw") == 0) { UI *ui = (UI*)popup_bw->ui; - a_UIcmd_browser_window_new(ui->w(), ui->h(), popup_bw); + a_UIcmd_browser_window_new(ui->w(), ui->h(), 0, popup_bw); } else if (strcmp((char*)data, "nt") == 0) { a_UIcmd_open_url_nt(popup_bw, NULL, 1); } else if (strcmp((char*)data, "of") == 0) { |