[evolution/webkit: 12/124] Remove workaround for embedding widgets into WebKit.
- From: Dan VrÃtil <dvratil src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution/webkit: 12/124] Remove workaround for embedding widgets into WebKit.
- Date: Mon, 23 Jan 2012 13:04:32 +0000 (UTC)
commit e4df5aed3894a642413d6f317a4bc8e1d9911960
Author: Dan VrÃtil <dvratil redhat com>
Date: Mon Aug 8 11:46:14 2011 +0200
Remove workaround for embedding widgets into WebKit.
It didn't work anyway and we will do it another way...
widgets/misc/e-web-view.c | 30 ------------------------------
1 files changed, 0 insertions(+), 30 deletions(-)
---
diff --git a/widgets/misc/e-web-view.c b/widgets/misc/e-web-view.c
index 0f88293..86e0bd2 100644
--- a/widgets/misc/e-web-view.c
+++ b/widgets/misc/e-web-view.c
@@ -441,32 +441,6 @@ web_view_navigation_policy_decision_requested_cb (EWebView *web_view,
return TRUE;
}
-static gboolean
-web_view_notify_load_state_idle_cb (gpointer data)
-{
- /* XXX Xan says I need to queue a resize here in order for
- * embedded widgets to show. It's a WebKit/GTK+ bug. */
- gtk_widget_queue_resize (GTK_WIDGET (data));
-
- g_debug ("Load Finished");
-
- return FALSE;
-}
-
-static void
-web_view_notify_load_status_cb (WebKitWebView *web_view,
- GParamSpec *pspec)
-{
- WebKitLoadStatus load_status;
-
- load_status = webkit_web_view_get_load_status (web_view);
-
- if (load_status == WEBKIT_LOAD_FINISHED) {
- gdk_threads_add_idle (
- web_view_notify_load_state_idle_cb, web_view);
- }
-}
-
static void
web_view_set_property (GObject *object,
guint property_id,
@@ -1511,10 +1485,6 @@ e_web_view_init (EWebView *web_view)
G_CALLBACK (web_view_navigation_policy_decision_requested_cb),
NULL);
- g_signal_connect (
- web_view, "notify::load-status",
- G_CALLBACK (web_view_notify_load_status_cb), NULL);
-
ui_manager = gtk_ui_manager_new ();
web_view->priv->ui_manager = ui_manager;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]