Until now, we don't request image visual update if desired size changed.
The result of desired size applied and not have big difference. So we need to re-load the image if desired size changed
Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
{
_desired_width = value;
using PropertyValue setValue = new PropertyValue(value);
- UpdateImage(ImageVisualProperty.DesiredWidth, setValue, false);
+ UpdateImage(ImageVisualProperty.DesiredWidth, setValue);
}
}
}
{
_desired_height = value;
using PropertyValue setValue = new PropertyValue(value);
- UpdateImage(ImageVisualProperty.DesiredHeight, setValue, false);
+ UpdateImage(ImageVisualProperty.DesiredHeight, setValue);
}
}
}