[Tizen] Fix svace issue at text-controller-impl.h 21/267021/1
authorEunki, Hong <eunkiki.hong@samsung.com>
Wed, 24 Nov 2021 07:48:15 +0000 (16:48 +0900)
committerEunki, Hong <eunkiki.hong@samsung.com>
Wed, 24 Nov 2021 07:48:15 +0000 (16:48 +0900)
Minor fix

Change-Id: Ic1aa06bcd3ae296dae7782de1bd4a59e38c9e476
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
dali-toolkit/internal/text/text-controller-impl.h

index 814f3a8..9b7772e 100644 (file)
@@ -357,6 +357,7 @@ struct Controller::Impl
     mTextFitMaxSize(DEFAULT_TEXTFIT_MAX),
     mTextFitStepSize(DEFAULT_TEXTFIT_STEP),
     mTextFitEnabled(false),
+    mTextFitChanged(false),
     mFontSizeScale(DEFAULT_FONT_SIZE_SCALE),
     mIsLayoutDirectionChanged(false)
   {
@@ -911,7 +912,7 @@ public:
   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.
+  bool  mTextFitChanged : 1;           ///< Whether the text fit property has changed.
   float mFontSizeScale;                ///< Scale value for Font Size. Default 1.0
   bool  mIsLayoutDirectionChanged : 1; ///< Whether the layout has changed.