Просмотр исходного кода

Graphics.jvm.cs: fixed .ctor (InterpolationMode)

svn path=/trunk/mcs/; revision=49033
Vladimir Krasnov 20 лет назад
Родитель
Сommit
2e184a76bc

+ 4 - 0
mcs/class/System.Drawing/System.Drawing/ChangeLog

@@ -1,3 +1,7 @@
+2005-08-28 Vladimir Krasnov <[email protected]>
+
+	* Graphics.jvm.cs: fixed .ctor (InterpolationMode)
+
 2005-08-28 Konstantin Triger <[email protected]>
 
 	* StrokeFactory.jvm.cs, AdvancedStroke.jvm.cs, Pen.jvm.cs

+ 1 - 0
mcs/class/System.Drawing/System.Drawing/Graphics.jvm.cs

@@ -58,6 +58,7 @@ namespace System.Drawing {
 			_nativeObject.setTransform( _transform.NativeObject );
 
 			NativeObject.setRenderingHint(awt.RenderingHints.KEY_COLOR_RENDERING, awt.RenderingHints.VALUE_COLOR_RENDER_QUALITY);
+			InterpolationMode = InterpolationMode.Bilinear;
 		}
 
 		#endregion