Don't shadow web_view in _action_source_view_activate
This commit is contained in:
parent
25cdc7161b
commit
32286215d6
1 changed files with 4 additions and 4 deletions
|
@ -3394,7 +3394,7 @@ _action_source_view_activate (GtkAction* action,
|
||||||
if (!(text_editor && *text_editor))
|
if (!(text_editor && *text_editor))
|
||||||
{
|
{
|
||||||
GtkWidget* source;
|
GtkWidget* source;
|
||||||
GtkWidget* web_view;
|
GtkWidget* source_view;
|
||||||
gchar* source_uri;
|
gchar* source_uri;
|
||||||
|
|
||||||
source_uri = g_filename_to_uri (filename, NULL, NULL);
|
source_uri = g_filename_to_uri (filename, NULL, NULL);
|
||||||
|
@ -3402,9 +3402,9 @@ _action_source_view_activate (GtkAction* action,
|
||||||
|
|
||||||
source = midori_view_new (NULL);
|
source = midori_view_new (NULL);
|
||||||
midori_view_set_settings (MIDORI_VIEW (source), browser->settings);
|
midori_view_set_settings (MIDORI_VIEW (source), browser->settings);
|
||||||
web_view = midori_view_get_web_view (MIDORI_VIEW (source));
|
source_view = midori_view_get_web_view (MIDORI_VIEW (source));
|
||||||
webkit_web_view_set_view_source_mode (WEBKIT_WEB_VIEW (web_view), TRUE);
|
webkit_web_view_set_view_source_mode (WEBKIT_WEB_VIEW (source_view), TRUE);
|
||||||
webkit_web_view_load_uri (WEBKIT_WEB_VIEW (web_view), source_uri);
|
webkit_web_view_load_uri (WEBKIT_WEB_VIEW (source_view), source_uri);
|
||||||
gtk_widget_show (source);
|
gtk_widget_show (source);
|
||||||
midori_browser_add_tab (browser, source);
|
midori_browser_add_tab (browser, source);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue