From 23b6962339da1cc7e96602819ffd686984cef1ee Mon Sep 17 00:00:00 2001 From: "jihye424.kim" Date: Mon, 23 Nov 2015 17:53:35 +0900 Subject: [PATCH] vm property: copy child base image path when clone - copy child base image and swap image path when clone 'VMPropertyValue' Change-Id: I04eda3083e67e882c92515e5b465e83e63d8c47e Signed-off-by: jihye424.kim (cherry picked from commit 56dc210806505cf90373d5131c957a2d7938cf5b) --- src/org/tizen/emulator/manager/vms/VMPropertyValue.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/org/tizen/emulator/manager/vms/VMPropertyValue.java b/src/org/tizen/emulator/manager/vms/VMPropertyValue.java index c5baf3a..7b5c4ed 100644 --- a/src/org/tizen/emulator/manager/vms/VMPropertyValue.java +++ b/src/org/tizen/emulator/manager/vms/VMPropertyValue.java @@ -184,6 +184,8 @@ public class VMPropertyValue implements Cloneable { dest.vmsName = this.vmsName; dest.baseImagePath = this.baseImagePath; + dest.childImagePath = this.childImagePath; + dest.swapImagePath = this.swapImagePath; dest.resolution = this.resolution; dest.dpi = this.dpi; -- 2.7.4