1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-29 06:07:11 +02:00

Fixes #1367 (Safari badge alignment)

This commit is contained in:
Chris 2015-05-07 17:45:51 -06:00
parent b7c0b95ff4
commit df8c82f6b4

View File

@ -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;