Revert "[Tizen] Do not substarct outline width in text-controller"
authorSeungho, Baek <sbsh.baek@samsung.com>
Mon, 16 Jul 2018 05:47:04 +0000 (14:47 +0900)
committerSeungho, Baek <sbsh.baek@samsung.com>
Mon, 16 Jul 2018 05:47:06 +0000 (14:47 +0900)
This reverts commit f4858327c8a12b6b5dd5d190e73dafaf82df596b.

dali-toolkit/internal/text/text-controller.cpp

index a2f0db2..7192281 100755 (executable)
@@ -3512,7 +3512,8 @@ bool Controller::DoRelayout( const Size& size,
     const float outlineWidth = static_cast<float>( mImpl->mModel->GetOutlineWidth() );
 
     // Set the layout parameters.
-    Layout::Parameters layoutParameters( size,
+    const Vector2 sizeOffset = Vector2(outlineWidth * 2.0f, outlineWidth * 2.0f); // The outline should be fit into the bounding box
+    Layout::Parameters layoutParameters( size - sizeOffset,
                                          textBuffer,
                                          lineBreakInfo.Begin(),
                                          wordBreakInfo.Begin(),