mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-05 18:32:30 +01:00
Fixes #1367 (Safari badge alignment)
This commit is contained in:
parent
b7c0b95ff4
commit
df8c82f6b4
@ -539,7 +539,6 @@
|
||||
state.active = true;
|
||||
// force re-render since we probably switched tabs
|
||||
state.dirty = (1 << 1) | (1 << 0);
|
||||
|
||||
renderIcon(state);
|
||||
}, true);
|
||||
|
||||
@ -564,9 +563,11 @@
|
||||
return;
|
||||
}
|
||||
var icon = iconState.icon;
|
||||
icon.badge = iconState.badge;
|
||||
// only update the image if needed:
|
||||
if(iconState.dirty & 1) {
|
||||
if(iconState.dirty & 2) {
|
||||
icon.badge = iconState.badge;
|
||||
}
|
||||
if(iconState.dirty & 1 && icon.image !== ICON_URLS[iconState.img]) {
|
||||
icon.image = ICON_URLS[iconState.img];
|
||||
}
|
||||
iconState.dirty = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user