[Tizen] Fix Underline property issue
authorSeungho, Baek <sbsh.baek@samsung.com>
Mon, 18 Feb 2019 05:42:49 +0000 (14:42 +0900)
committerSeungho, Baek <sbsh.baek@samsung.com>
Mon, 18 Feb 2019 05:42:53 +0000 (14:42 +0900)
This reverts commit 5c6e53d0a0f3d2a4216bf3c37b18c9e5889e8078.

dali-toolkit/internal/text/text-effects-style.cpp

index f65655b..10d9da4 100755 (executable)
@@ -358,16 +358,9 @@ void GetUnderlineProperties( ControllerPtr controller, Property::Value& value, E
         {
           Property::Map map;
 
-          const std::string enabledStr = enabled ? TRUE_TOKEN : FALSE_TOKEN;
-          map.Insert( ENABLE_KEY, enabledStr );
-
-          std::string colorStr;
-          Vector4ToColorString( color, colorStr );
-          map.Insert( COLOR_KEY, colorStr );
-
-          std::string heightStr;
-          FloatToString( height, heightStr );
-          map.Insert( HEIGHT_KEY, heightStr );
+          map.Insert( ENABLE_KEY, enabled );
+          map.Insert( COLOR_KEY, color );
+          map.Insert( HEIGHT_KEY, height );
 
           value = map;
         }