diff --git a/src/net/i2p/android/wizard/ui/SingleBooleanFragment.java b/src/net/i2p/android/wizard/ui/SingleBooleanFragment.java index 69db5faacdcf945cc385f94ddceb3d5580a2fa0f..d4121daaa311ca55f2169aa661117cb78c9dc8a5 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;