--- data/totem.schemas.in~ 2008-09-02 12:30:55.000000000 +0200 +++ data/totem.schemas.in 2008-09-02 12:30:55.000000000 +0200 @@ -68,7 +68,7 @@ /apps/totem/hue totem int - 32767 + 1 The hue of the video --- data/totem.ui~ 2008-09-02 12:50:41.000000000 +0200 +++ data/totem.ui 2008-09-02 12:50:41.000000000 +0200 @@ -641,7 +641,7 @@ 1000 2000 250 - 32767 + 1 --- src/totem-preferences.c.orig 2008-09-02 13:07:03.000000000 +0200 +++ src/totem-preferences.c 2008-09-02 13:16:23.000000000 +0200 @@ -428,14 +428,21 @@ char *scales[] = { "tpw_bright_scale", "tpw_contrast_scale", - "tpw_saturation_scale", - "tpw_hue_scale" + "tpw_saturation_scale" }; for (i = 0; i < G_N_ELEMENTS (scales); i++) { GtkRange *item; item = GTK_RANGE (gtk_builder_get_object (totem->xml, scales[i])); gtk_range_set_value (item, 65535/2); + }; + + char *scales_hue[] = { "tpw_hue_scale" }; + + for (i = 0; i < G_N_ELEMENTS (scales_hue); i++) { + GtkRange *item_h; + item_h = GTK_RANGE (gtk_builder_get_object (totem->xml, scales_hue[i])); + gtk_range_set_value (item_h, 65535/65535); } }