Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 236439
Collapse All | Expand All

(-)data/totem.schemas.in~ (-1 / +1 lines)
Lines 68-74 Link Here
68
	<applyto>/apps/totem/hue</applyto>
68
	<applyto>/apps/totem/hue</applyto>
69
	<owner>totem</owner>
69
	<owner>totem</owner>
70
	<type>int</type>
70
	<type>int</type>
71
	<default>32767</default>
71
	<default>1</default>
72
	<locale name="C">
72
	<locale name="C">
73
	  <short>The hue of the video</short>
73
	  <short>The hue of the video</short>
74
	</locale>
74
	</locale>
(-)data/totem.ui~ (-1 / +1 lines)
Lines 641-647 Link Here
641
  <property name="step-increment">1000</property>
641
  <property name="step-increment">1000</property>
642
  <property name="page-increment">2000</property>
642
  <property name="page-increment">2000</property>
643
  <property name="page-size">250</property>
643
  <property name="page-size">250</property>
644
  <property name="value">32767</property>
644
  <property name="value">1</property>
645
</object>
645
</object>
646
646
647
<object class="GtkAdjustment" id="tmw_seek_adjustment">
647
<object class="GtkAdjustment" id="tmw_seek_adjustment">
(-)src/totem-preferences.c.orig (-2 / +9 lines)
Lines 428-441 Link Here
428
	char *scales[] = {
428
	char *scales[] = {
429
		"tpw_bright_scale",
429
		"tpw_bright_scale",
430
		"tpw_contrast_scale",
430
		"tpw_contrast_scale",
431
		"tpw_saturation_scale",
431
		"tpw_saturation_scale"
432
		"tpw_hue_scale"
433
	};
432
	};
434
433
435
	for (i = 0; i < G_N_ELEMENTS (scales); i++) {
434
	for (i = 0; i < G_N_ELEMENTS (scales); i++) {
436
		GtkRange *item;
435
		GtkRange *item;
437
		item = GTK_RANGE (gtk_builder_get_object (totem->xml, scales[i]));
436
		item = GTK_RANGE (gtk_builder_get_object (totem->xml, scales[i]));
438
		gtk_range_set_value (item, 65535/2);
437
		gtk_range_set_value (item, 65535/2);
438
	};
439
440
	char *scales_hue[] = { "tpw_hue_scale" };
441
	
442
	for (i = 0; i < G_N_ELEMENTS (scales_hue); i++) {
443
		GtkRange *item_h;
444
		item_h = GTK_RANGE (gtk_builder_get_object (totem->xml, scales_hue[i]));
445
		gtk_range_set_value (item_h, 65535/65535);
439
	}
446
	}
440
}
447
}
441
448

Return to bug 236439