Don't draw badges when zoomed out (#192)

This commit is contained in:
Chenlei Hu
2024-10-04 08:34:46 -04:00
committed by GitHub
parent a7e149304e
commit 36a8b1fea0

View File

@@ -4376,7 +4376,10 @@ export class LGraphCanvas {
node.is_selected,
node.mouseOver
);
node.drawBadges(ctx);
if (!low_quality) {
node.drawBadges(ctx);
}
ctx.shadowColor = "transparent";