From 547d191030012ab8ba687cba368cb32a6f2d0ec2 Mon Sep 17 00:00:00 2001 From: "Eunki, Hong" Date: Wed, 24 Nov 2021 16:46:14 +0900 Subject: [PATCH] Fix svace issue at text-controller-impl.h Minor fix Change-Id: I25efe7abd36bc61303fe6ddbddd86a6b6c55a44a Signed-off-by: Eunki, Hong --- dali-toolkit/internal/text/text-controller-impl.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dali-toolkit/internal/text/text-controller-impl.h b/dali-toolkit/internal/text/text-controller-impl.h index e49971a..e86aed8 100644 --- a/dali-toolkit/internal/text/text-controller-impl.h +++ b/dali-toolkit/internal/text/text-controller-impl.h @@ -356,8 +356,9 @@ struct Controller::Impl mTextFitMinSize(DEFAULT_TEXTFIT_MIN), mTextFitMaxSize(DEFAULT_TEXTFIT_MAX), mTextFitStepSize(DEFAULT_TEXTFIT_STEP), - mTextFitEnabled(false), mFontSizeScale(DEFAULT_FONT_SIZE_SCALE), + mTextFitEnabled(false), + mTextFitChanged(false), mIsLayoutDirectionChanged(false) { mModel = Model::New(); @@ -953,9 +954,9 @@ public: float mTextFitMinSize; ///< Minimum Font Size for text fit. Default 10 float mTextFitMaxSize; ///< Maximum Font Size for text fit. Default 100 float mTextFitStepSize; ///< Step Size for font intervalse. Default 1 - bool mTextFitEnabled : 1; ///< Whether the text's fit is enabled. - float mTextFitChanged; ///< Whether the text fit property has changed. float mFontSizeScale; ///< Scale value for Font Size. Default 1.0 + bool mTextFitEnabled : 1; ///< Whether the text's fit is enabled. + bool mTextFitChanged : 1; ///< Whether the text fit property has changed. bool mIsLayoutDirectionChanged : 1; ///< Whether the layout has changed. private: -- 2.7.4