diff options
Diffstat (limited to 'gui/devices/watch')
-rw-r--r-- | gui/devices/watch/res/watch.xml | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/gui/devices/watch/res/watch.xml b/gui/devices/watch/res/watch.xml index a8535c659..7fae5f3d7 100644 --- a/gui/devices/watch/res/watch.xml +++ b/gui/devices/watch/res/watch.xml @@ -2138,7 +2138,7 @@ <condition var1="tw_mount_system_ro" op="=" var2="0" /> <text>Only mount system read-only</text> <image resource="checkbox_false" /> - <action function="mountsystemtoggle"></action> + <action function="mountsystemtoggle">1</action> </object> <object type="button"> @@ -2214,18 +2214,15 @@ </object> <object type="action"> - <conditions> - <condition var1="tw_operation_state" var2="1" /> - <condition var1="tw_lifetime_writes" var2="1" /> - </conditions> - <action function="page">mount</action> + <condition var1="tw_lifetime_writes" var2="1" /> + <actions> + <action function="mountsystemtoggle">0</action> + <action function="page">mount</action> + </actions> </object> <object type="action"> - <conditions> - <condition var1="tw_operation_state" var2="1" /> - <condition var1="tw_lifetime_writes" var2="0" /> - </conditions> + <condition var1="tw_lifetime_writes" var2="0" /> <actions> <action function="set">tw_back=mount</action> <action function="page">system_readonly</action> @@ -3711,7 +3708,7 @@ <placement x="%col_center_x%" y="%row9_text_y%" /> <text>Keep Read Only</text> <actions> - <action function="set">tw_mount_system_ro=1</action> + <action function="mountsystemtoggle">1</action> <action function="set">tw_page_done=1</action> <action function="page">%tw_back%</action> </actions> @@ -3720,7 +3717,7 @@ <object type="slider"> <text>Swipe to Allow Modifications</text> <actions> - <action function="set">tw_mount_system_ro=0</action> + <action function="mountsystemtoggle">0</action> <action function="set">tw_page_done=1</action> <action function="page">%tw_back%</action> </actions> |