[evolution] EMailReader - Call zoom in/out methods from EWebView instead of the WebKit ones
- From: Tomas Popela <tpopela src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [evolution] EMailReader - Call zoom in/out methods from EWebView instead of the WebKit ones
- Date: Mon, 1 Sep 2014 14:49:45 +0000 (UTC)
commit 198f5b7cd178deb43f99901184b44514386550e9
Author: Tomas Popela <tpopela redhat com>
Date: Mon Sep 1 16:45:58 2014 +0200
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 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/mail/e-mail-reader.c b/mail/e-mail-reader.c
index 7ef8af9..162f17f 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
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]