fixed a visual issue
This commit is contained in:
parent
520c4c53c0
commit
2dbab5220a
Binary file not shown.
Binary file not shown.
@ -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);
|
||||
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user