Merge pull request #344 from dotnet/pending-rect-renaming

Missing Rectangle to Rect renaming changes
This commit is contained in:
Rui Marinho 2022-03-10 11:20:28 +00:00 коммит произвёл GitHub
Родитель cc1e48974d eed8291f21
Коммит 79084b0c51
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -4,10 +4,10 @@ namespace Microsoft.Maui.Graphics.Platform.Gtk {
public static class GraphicsExtensions {
public static Rect ToRectangle(this Gdk.Rectangle it)
public static Rect ToRect(this Gdk.Rectangle it)
=> new Rect(it.X, it.Y, it.Width, it.Height);
public static RectF ToRectangleF(this Gdk.Rectangle it)
public static RectF ToRectF(this Gdk.Rectangle it)
=> new RectF(it.X, it.Y, it.Width, it.Height);
public static Gdk.Rectangle ToNative(this Rect it)