1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-18 17:02:27 +02:00

Properly auto-toggle on firewall pane [regression]

... when enabling advanced user mode. A regression
caused the pane to be toggled to hidden state instead
of being toggled to shown state.
This commit is contained in:
Raymond Hill 2020-05-12 12:08:32 -04:00
parent 91b00caa46
commit 3d3cd58d9f
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -331,7 +331,7 @@ const matchBucket = function(url, hostname, bucket, start) {
switch ( name ) { switch ( name ) {
case 'advancedUserEnabled': case 'advancedUserEnabled':
if ( value === true ) { if ( value === true ) {
us.popupPanelSections = 0b1111; us.popupPanelSections |= 0b11111;
} }
break; break;
case 'autoUpdate': case 'autoUpdate':