From a77674603adfb972d32189e304ced2bc4a0dc3bf Mon Sep 17 00:00:00 2001 From: str4d <str4d@mail.i2p> Date: Mon, 26 Aug 2013 01:07:21 +0000 Subject: [PATCH] Restore checked status --- src/net/i2p/android/wizard/ui/SingleBooleanFragment.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/net/i2p/android/wizard/ui/SingleBooleanFragment.java b/src/net/i2p/android/wizard/ui/SingleBooleanFragment.java index 69db5faac..d4121daaa 100644 --- a/src/net/i2p/android/wizard/ui/SingleBooleanFragment.java +++ b/src/net/i2p/android/wizard/ui/SingleBooleanFragment.java @@ -66,6 +66,7 @@ public class SingleBooleanFragment extends Fragment { ((TextView) rootView.findViewById(R.id.wizard_text_field_desc)).setText(mPage.getDesc()); mCheckBox = ((CheckBox) rootView.findViewById(R.id.wizard_check_box)); + mCheckBox.setChecked(mPage.getData().getBoolean(Page.SIMPLE_DATA_KEY)); if (mPage.getLabel() != null) mCheckBox.setText(mPage.getLabel()); return rootView; -- GitLab