fixed a visual issue

This commit is contained in:
Vlad Mihalachi 2014-09-27 17:48:57 +02:00
parent 520c4c53c0
commit 2dbab5220a
4 changed files with 7 additions and 2 deletions

Binary file not shown.

View File

@ -79,7 +79,7 @@ public class SettingsFragment extends Fragment implements EncodingDialogFragment
SettingsFragment.sLightTheme = PreferenceHelper.getLightTheme(getActivity());
SettingsFragment.sAutoSave = PreferenceHelper.getAutoSave(getActivity());
SettingsFragment.sReadOnly = PreferenceHelper.getReadOnly(getActivity());
SettingsFragment.sSendErrorReports = PreferenceHelper.getReadOnly(getActivity());
SettingsFragment.sSendErrorReports = PreferenceHelper.getSendErrorReports(getActivity());
}
@Override
@ -106,7 +106,7 @@ public class SettingsFragment extends Fragment implements EncodingDialogFragment
switchSuggestionsActive.setChecked(sSuggestionsActive);
switchAutoSave.setChecked(sAutoSave);
switchReadOnly.setChecked(sReadOnly);
switchSendErrorReports.setChecked(sReadOnly);
switchSendErrorReports.setChecked(sSendErrorReports);
TextView encodingView, fontSizeView, goProView;
encodingView = (TextView) rootView.findViewById(R.id.drawer_button_encoding);

View File

@ -224,6 +224,11 @@
android:paddingRight="16dp"
android:textColor="@color/navigation_drawer_button_text_color_inverted"/>
<View
android:background="@color/divider_inverted"
android:layout_width="match_parent"
android:layout_height="@dimen/line_dimension"/>
<CheckBox
android:button="@null"
android:drawableRight="?android:attr/listChoiceIndicatorMultiple"