X-Git-Url: http://git.hungrycats.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=hacks%2Fglx%2Fgears.c;h=61599f9ae5e372ed490379bea978101acf41f69c;hb=7edd66e6bd3209013ee059819747b10b5835635b;hp=5a8fd86f2eb82a698e79fc7d48179cca591c13d5;hpb=6afd6db0ae9396cd7ff897ade597cd5483f49b0e;p=xscreensaver diff --git a/hacks/glx/gears.c b/hacks/glx/gears.c index 5a8fd86f..61599f9a 100644 --- a/hacks/glx/gears.c +++ b/hacks/glx/gears.c @@ -238,7 +238,8 @@ new_gear (ModeInfo *mi, gear *parent) double pix = g->tooth_h * MI_HEIGHT(mi); /* approx. tooth size in pixels */ if (pix <= 2.5) g->size = INVOLUTE_SMALL; else if (pix <= 3.5) g->size = INVOLUTE_MEDIUM; - else g->size = INVOLUTE_LARGE; + else if (pix <= 25) g->size = INVOLUTE_LARGE; + else g->size = INVOLUTE_HUGE; } g->base_p = !parent;