ANIMATOR : Bug fix for removed property value 52/18752/1
authorseongwon.shim <seongwon.shim@samsung.com>
Mon, 31 Mar 2014 09:13:04 +0000 (18:13 +0900)
committerseongwon.shim <seongwon.shim@samsung.com>
Mon, 31 Mar 2014 09:13:04 +0000 (18:13 +0900)
Put all property to map before edit properties

Change-Id: Ibf113ed01744000103adfca629669f0a7c98d512
Signed-off-by: seongwon.shim <seongwon.shim@samsung.com>
org.tizen.webuibuilder/src/org/tizen/webuibuilder/animator/model/AnimatorModelManager.java

index 37ca0a8..4232d53 100644 (file)
@@ -903,7 +903,7 @@ public class AnimatorModelManager implements ISelectionListener, IPageDataSetLis
                     }
                 }
             }
-            oldProperties = frame.getProperties(properties.keySet());
+            oldProperties.putAll(frame.getProperties(properties.keySet()));
             frame.addOrEditProperties(properties);
         }