@@ -604,7 +604,7 @@ public void Setup ()
604604 } ;
605605 r_cps . gradient . SetDrawFunc ( ( area , context , width , height ) =>
606606 ColorPickerSlider . DrawGradient ( context , width , height , cps_padding_width , cps_padding_height ,
607- new [ ] { CurrentColor with { R = 0 } , CurrentColor with { R = 1 } } ) ) ;
607+ new [ ] { CurrentColor with { R = 0 } , CurrentColor with { R = 1 } } ) ) ;
608608
609609 sliders_box . Append ( r_cps ) ;
610610 g_cps = new ColorPickerSlider ( 255 , Translations . GetString ( "Green" ) , CurrentColor . G * 255.0 , this , cps_padding_width , cps_width ) ;
@@ -614,7 +614,7 @@ public void Setup ()
614614 } ;
615615 g_cps . gradient . SetDrawFunc ( ( area , context , width , height ) =>
616616 ColorPickerSlider . DrawGradient ( context , width , height , cps_padding_width , cps_padding_height ,
617- new [ ] { CurrentColor with { G = 0 } , CurrentColor with { G = 1 } } ) ) ;
617+ new [ ] { CurrentColor with { G = 0 } , CurrentColor with { G = 1 } } ) ) ;
618618 sliders_box . Append ( g_cps ) ;
619619 b_cps = new ColorPickerSlider ( 255 , Translations . GetString ( "Blue" ) , CurrentColor . B * 255.0 , this , cps_padding_width , cps_width ) ;
620620 b_cps . OnValueChange += ( sender , args ) => {
@@ -623,7 +623,7 @@ public void Setup ()
623623 } ;
624624 b_cps . gradient . SetDrawFunc ( ( area , context , width , height ) =>
625625 ColorPickerSlider . DrawGradient ( context , width , height , cps_padding_width , cps_padding_height ,
626- new [ ] { CurrentColor with { B = 0 } , CurrentColor with { B = 1 } } ) ) ;
626+ new [ ] { CurrentColor with { B = 0 } , CurrentColor with { B = 1 } } ) ) ;
627627 sliders_box . Append ( b_cps ) ;
628628 sliders_box . Append ( new Gtk . Separator ( ) ) ;
629629 a_cps = new ColorPickerSlider ( 255 , Translations . GetString ( "Alpha" ) , CurrentColor . A * 255.0 , this , cps_padding_width , cps_width ) ;
@@ -633,7 +633,7 @@ public void Setup ()
633633 } ;
634634 a_cps . gradient . SetDrawFunc ( ( area , context , width , height ) =>
635635 ColorPickerSlider . DrawGradient ( context , width , height , cps_padding_width , cps_padding_height ,
636- new [ ] { CurrentColor with { A = 0 } , CurrentColor with { A = 1 } } ) ) ;
636+ new [ ] { CurrentColor with { A = 0 } , CurrentColor with { A = 1 } } ) ) ;
637637 sliders_box . Append ( a_cps ) ;
638638
639639 #endregion
0 commit comments