From 811ed541e442ff8138dea0fcbbf6a53ec739301e Mon Sep 17 00:00:00 2001 From: Piotr Grad Date: Sun, 25 Jan 2015 13:03:36 +0100 Subject: [PATCH] [M34-Merge] 'Load images' settings option fixed. EWK API expects to not show images - not only to not download images. original commit: http://165.213.202.130:8080/#/c/69544/ Reviewed by: Hyunhak Kim, Piotr Grad, SeungSeop Park Change-Id: I216d20a8190bf44812ba4e0fc52185ab5db706ee Signed-off-by: Piotr Grad --- tizen_src/ewk/efl_integration/public/ewk_settings.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/tizen_src/ewk/efl_integration/public/ewk_settings.cc b/tizen_src/ewk/efl_integration/public/ewk_settings.cc index c91bd48..8b109e1 100644 --- a/tizen_src/ewk/efl_integration/public/ewk_settings.cc +++ b/tizen_src/ewk/efl_integration/public/ewk_settings.cc @@ -85,6 +85,7 @@ Eina_Bool ewk_settings_loads_images_automatically_set(Ewk_Settings* settings, Ei { EINA_SAFETY_ON_NULL_RETURN_VAL(settings, false); settings->getPreferences().loads_images_automatically = automatic; + settings->getPreferences().images_enabled = automatic; ewkUpdateWebkitPreferences(settings->getEvasObject()); return true; } -- 2.7.4