summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavi Artigas <xavierartigas@yahoo.es>2019-08-26 17:25:10 +0200
committerXavi Artigas <xavierartigas@yahoo.es>2019-08-26 17:25:10 +0200
commitce2fcda1e233731c10e0339a9e9c51175d38d0be (patch)
tree50a5634f183eb4b8913b8c64dd8f9671f85e82fc
parentbbb2dc6fadfe8323cb627e3ced5f45a124fd21d0 (diff)
downloadefl-ce2fcda1e233731c10e0339a9e9c51175d38d0be.tar.gz
Efl.Gfx.Image docs: whitespace and wording.
-rw-r--r--src/lib/efl/interfaces/efl_gfx_image.eo21
1 files changed, 9 insertions, 12 deletions
diff --git a/src/lib/efl/interfaces/efl_gfx_image.eo b/src/lib/efl/interfaces/efl_gfx_image.eo
index 5b8ea58de9..7954ea7b2e 100644
--- a/src/lib/efl/interfaces/efl_gfx_image.eo
+++ b/src/lib/efl/interfaces/efl_gfx_image.eo
@@ -21,32 +21,29 @@ enum @beta Efl.Gfx.Image_Scale_Hint
enum @beta Efl.Gfx.Image_Scale_Type
{
[[Enumeration that defines scale types of an image.]]
- none, [[Use the image's natural size.]]
+ none, [[Use the image's natural size.]]
fill, [[Scale the image so that it matches
the object's area exactly.
The image's aspect ratio might be changed.]]
- fit, [[Scale the image
+ fit, [[Scale the image
so that it fits completely inside the object's area
while maintaining the aspect ratio.
At least one of the dimensions of the image
- should be equal to the corresponding dimension
+ will be equal to the corresponding dimension
of the object.]]
- fit_width, [[Scale the image
+ fit_width, [[Scale the image
so that it covers the entire object area horizontally
while maintaining the aspect ratio.
- The image may become larger than the object.
- ]]
- fit_height, [[Scale the image
+ The image may become taller than the object.]]
+ fit_height, [[Scale the image
so that it covers the entire object area vertically
while maintaining the aspect ratio.
- The image may become larger than the object.
- ]]
- expand, [[Scale the image
+ The image may become wider than the object.]]
+ expand, [[Scale the image
so that it covers the entire object area on one axis
while maintaining the aspect ratio, preferring whichever
axis is largest.
- The image may become larger than the object.
- ]]
+ The image may become larger than the object.]]
tile, [[Tile image at its original size.]]
}