From 8b17b16d63bebbf85fa211b192e0cdc669120ba2 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Sat, 5 Mar 2011 15:01:19 +0100 Subject: [PATCH] theme: Fix spinner for inactive state. Previously, the inactive state caused the spinner's solid line to be drawn to the right. Now it's drawn to the top instead, which makes the inactive state look more natural. --- gtk/gtkthemingengine.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gtk/gtkthemingengine.c b/gtk/gtkthemingengine.c index b6a0795abf..717d530732 100644 --- a/gtk/gtkthemingengine.c +++ b/gtk/gtkthemingengine.c @@ -3004,8 +3004,8 @@ 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 xscale = - sin (i * G_PI / half); + gdouble yscale = - cos (i * G_PI / half); cairo_set_source_rgba (cr, color->red,