From 198f5b7cd178deb43f99901184b44514386550e9 Mon Sep 17 00:00:00 2001 From: Tomas Popela Date: Mon, 1 Sep 2014 16:45:58 +0200 Subject: EMailReader - Call zoom in/out methods from EWebView instead of the WebKit ones The methods in the EWebView are limiting the zoom level. --- mail/e-mail-reader.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mail/e-mail-reader.c b/mail/e-mail-reader.c index 7ef8af9fb2..162f17f90d 100644 --- a/mail/e-mail-reader.c +++ b/mail/e-mail-reader.c @@ -1752,7 +1752,7 @@ action_mail_zoom_100_cb (GtkAction *action, display = e_mail_reader_get_mail_display (reader); - webkit_web_view_set_zoom_level (WEBKIT_WEB_VIEW (display), 1.0); + e_web_view_zoom_100 (E_WEB_VIEW (display)); } static void @@ -1763,7 +1763,7 @@ action_mail_zoom_in_cb (GtkAction *action, display = e_mail_reader_get_mail_display (reader); - webkit_web_view_zoom_in (WEBKIT_WEB_VIEW (display)); + e_web_view_zoom_in (E_WEB_VIEW (display)); } static void @@ -1774,7 +1774,7 @@ action_mail_zoom_out_cb (GtkAction *action, display = e_mail_reader_get_mail_display (reader); - webkit_web_view_zoom_out (WEBKIT_WEB_VIEW (display)); + e_web_view_zoom_out (E_WEB_VIEW (display)); } static void -- cgit v1.2.3