theme: Make spinner animation turn clockwise

This commit is contained in:
Benjamin Otte 2011-03-05 14:59:25 +01:00
parent 2482847ecf
commit 9b8fbe5b72

View File

@ -3005,7 +3005,7 @@ gtk_theming_engine_render_activity (GtkThemingEngine *engine,
/* transparency is a function of time and intial value */
gdouble t = 1.0 - (gdouble) ((i + step) % num_steps) / num_steps;
gdouble xscale = cos (i * G_PI / half);
gdouble yscale = sin (i * G_PI / half);
gdouble yscale = - sin (i * G_PI / half);
cairo_set_source_rgba (cr,
color->red,