Hide SSL options when not using custom trust manager

pull/214/head
M66B 9 months ago
parent d78ad87c5f
commit d28b8a3d91

@ -118,6 +118,7 @@ public class FragmentOptionsConnection extends FragmentBase implements SharedPre
private TextView tvNetworkInfo;
private Group grpValidated;
private Group grpCustomSsl;
private final static String[] RESET_OPTIONS = new String[]{
"metered", "download", "download_limited", "roaming", "rlah",
@ -181,6 +182,7 @@ public class FragmentOptionsConnection extends FragmentBase implements SharedPre
tvNetworkInfo = view.findViewById(R.id.tvNetworkInfo);
grpValidated = view.findViewById(R.id.grpValidated);
grpCustomSsl = view.findViewById(R.id.grpCustomSsl);
setOptions();
@ -587,6 +589,7 @@ public class FragmentOptionsConnection extends FragmentBase implements SharedPre
FragmentDialogTheme.setBackground(getContext(), view, false);
tvNetworkMetered.setVisibility(View.GONE);
tvNetworkRoaming.setVisibility(View.GONE);
grpCustomSsl.setVisibility(SSLHelper.customTrustManager() ? View.VISIBLE : View.GONE);
cardDebug.setVisibility(View.GONE);
PreferenceManager.getDefaultSharedPreferences(getContext()).registerOnSharedPreferenceChangeListener(this);

@ -657,6 +657,14 @@
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="swValidated,tvValidatedHint,swVpnOnly" />
<androidx.constraintlayout.widget.Group
android:id="@+id/grpCustomSsl"
android:layout_width="0dp"
android:layout_height="0dp"
app:constraint_referenced_ids="
swSslHarden,tvSslHardenHint,swSslHardenStrict,
swCertStrict,tvCertStrictHint,swCheckNames" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.cardview.widget.CardView>

Loading…
Cancel
Save