edje_externals/elm_video: Fix bug where we override the rememberred position

This bug was there from the initial commit of elm_video. Classical
copy&andpaste bug.

CID: 1267207
This commit is contained in:
Stefan Schmidt 2015-01-28 13:49:00 +01:00
parent cca846099f
commit b97dfcee87
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ static void * external_video_params_parse(void *data EINA_UNUSED,
else if (!strcmp(param->name, "remember position"))
{
mem->remember_position = param->i;
mem->remember_position = EINA_TRUE;
mem->remember_position_exists = EINA_TRUE;
}
}
return mem;