summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCedric BAIL <cedric@osg.samsung.com>2015-01-13 15:25:10 +0100
committerCedric BAIL <cedric@osg.samsung.com>2015-01-13 16:15:29 +0100
commit8d24ffbb693148fcae25266a289fb5647085ccfd (patch)
tree1b2415efed2adcb85affe82e1edcf9161c2df9e1
parentdc30ef6d7ab9b3a657bf718889828561f58c47d1 (diff)
downloadelementary-8d24ffbb693148fcae25266a289fb5647085ccfd.tar.gz
photocam: force reload of image on file_set.
Thanks, bug reported by thierry@substanciel.fr .
-rw-r--r--src/lib/elm_photocam.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/elm_photocam.c b/src/lib/elm_photocam.c
index dc88c0b06..da6ea0900 100644
--- a/src/lib/elm_photocam.c
+++ b/src/lib/elm_photocam.c
@@ -1429,7 +1429,11 @@ _internal_file_set(Eo *obj, Elm_Photocam_Data *sd, const char *file, Eina_File *
int w, h;
double tz;
- if (!eina_stringshare_replace(&sd->file, file)) return;
+ // It is actually to late, we have lost the reference to the previous
+ // file descriptor already, so we can't know if the file changed. To
+ // be safe we do for now just force a full reload on file_set and hope
+ // on evas to catch it, if there is no change.
+ eina_stringshare_replace(&sd->file, file);
sd->f = eina_file_dup(f);
evas_object_image_smooth_scale_set(sd->img, (sd->no_smooth == 0));