From 79a661b7449659bc7157712a61bd3e8abd47c3ca Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Thu, 15 Sep 2022 23:49:08 +0200 Subject: [PATCH] Changed the default vertical tile alignment from top to bottom. --- es-core/src/components/ImageComponent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-core/src/components/ImageComponent.cpp b/es-core/src/components/ImageComponent.cpp index c167f4994..ba516edc5 100644 --- a/es-core/src/components/ImageComponent.cpp +++ b/es-core/src/components/ImageComponent.cpp @@ -37,7 +37,7 @@ ImageComponent::ImageComponent(bool forceLoad, bool dynamic) , mLinearInterpolation {false} , mMipmapping {false} , mTileHorizontalAlignment {ALIGN_LEFT} - , mTileVerticalAlignment {ALIGN_TOP} + , mTileVerticalAlignment {ALIGN_BOTTOM} , mTopLeftCrop {0.0f, 0.0f} , mBottomRightCrop {1.0f, 1.0f} , mClipRegion {0.0f, 0.0f, 0.0f, 0.0f}