From 878f7b05117d3fa8de6c0f295cd34801b1392a2c Mon Sep 17 00:00:00 2001 From: Steven Luo Date: Tue, 7 Sep 2010 23:34:31 -0700 Subject: [PATCH] Fremantle: Use open_new_window instead of load_url when passing URL to MicroB With the changes to MicroB launching for Fremantle, there are now cases where we are passing a D-Bus request to a MicroB process with windows open, instead of just asking for a browser session to be started. In the latter case, load_url and open_new_window are equivalent, but in the former, they are not -- load_url loads the URL in an existing browser window. Fully emulating MicroB's behavior here now requires keeping track of whether the request we got was load_url or open_new_window and requesting the same of MicroB, but for now, do what most users want and what we do with other browsers -- always open a new window for the URL. --- launcher.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/launcher.c b/launcher.c index f42e999..7a3c8c1 100644 --- a/launcher.c +++ b/launcher.c @@ -321,7 +321,7 @@ int launch_microb_open_window(struct swb_context *ctx, char *uri, uri = "about:blank"; } } - if (!dbus_g_proxy_call(g_proxy, "load_url", + if (!dbus_g_proxy_call(g_proxy, "open_new_window", &gerror, G_TYPE_STRING, uri, G_TYPE_INVALID, -- 1.7.9.5