Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
linhome-android-old-big-globs
Commits
cf1f9fbb
Commit
cf1f9fbb
authored
4 years ago
by
Christophe Deschamps
Browse files
Options
Download
Patches
Plain Diff
Avoid creating new device actions upon rotation
parent
0d4846fc
master
develop
feature/fix_sip_ports
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
app/src/main/java/org/linhome/ui/devices/edit/DeviceEditorFragment.kt
+8
-5
.../java/org/linhome/ui/devices/edit/DeviceEditorFragment.kt
with
8 additions
and
5 deletions
app/src/main/java/org/linhome/ui/devices/edit/DeviceEditorFragment.kt
+
8
−
5
View file @
cf1f9fbb
...
...
@@ -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
)
}
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets