Bug 589205 – help-browser uses deprecated (and sometimes broken) webkit call
Use webkit_web_view_load_uri() instead of webkit_web_view_open().
This commit is contained in:
parent
cabcc592f0
commit
87f25f29d8
1 changed files with 1 additions and 1 deletions
|
|
@ -331,7 +331,7 @@ browser_dialog_load (const gchar *uri)
|
|||
{
|
||||
g_return_if_fail (uri != NULL);
|
||||
|
||||
webkit_web_view_open (WEBKIT_WEB_VIEW (view), uri);
|
||||
webkit_web_view_load_uri (WEBKIT_WEB_VIEW (view), uri);
|
||||
|
||||
select_index (uri);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue