Commit cf1f9fbb authored by Christophe Deschamps's avatar Christophe Deschamps
Browse files

Avoid creating new device actions upon rotation

No related merge requests found
Showing with 8 additions and 5 deletions
......@@ -43,6 +43,7 @@ import org.linhome.entities.Action
import org.linhome.store.DeviceStore
import org.linhome.ui.validators.ValidatorFactory
import org.linhome.utils.DialogUtil
import org.linhome.utils.cdlog
class DeviceEditorFragment : GenericFragment() {
......@@ -71,11 +72,13 @@ class DeviceEditorFragment : GenericFragment() {
model.device = args.device
if (model.device == null) {
addAction(null)
} else {
model.device!!.actions?.forEach {
addAction(it)
if (model.actionsViewModels.isEmpty()) {
if (model.device == null) {
addAction(null)
} else {
model.device!!.actions?.forEach {
addAction(it)
}
}
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment