Skip to content

Commit d90b310

Browse files
committed
Show the ETP widget when clicking on the Advanced button
The current code was always showing the Password Exceptions dialog instead. The problem was that we had a switch to select the proper dialog and the ETP option didn't have a break at the end so it was falling back to the next option which was the password exceptions option. Fixes #1901
1 parent b7c8d9b commit d90b310

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

app/src/common/shared/com/igalia/wolvic/ui/widgets/settings/SitePermissionsOptionsView.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ protected void updateUI() {
8585
mBinding.contentText.setText(R.string.settings_privacy_policy_tracking_description);
8686
mBinding.emptyText.setText(R.string.settings_privacy_policy_tracking_empty_description);
8787
mBinding.emptySecondText.setVisibility(GONE);
88+
break;
8889
case SitePermission.SITE_PERMISSION_AUTOFILL:
8990
mBinding.headerLayout.setTitle(R.string.settings_privacy_policy_login_exceptions_title);
9091
mBinding.contentText.setText(R.string.settings_privacy_policy_login_exceptions_description);

0 commit comments

Comments
 (0)