mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 18:57:19 +02:00
[QuickAccent]Upgrade Vanara.Invoke dependencies to 3.4.11 (#22351)
This commit is contained in:
@@ -24,7 +24,7 @@ public struct Point
|
||||
Y = y;
|
||||
}
|
||||
|
||||
public Point(System.Drawing.Point point)
|
||||
public Point(Vanara.PInvoke.POINT point)
|
||||
{
|
||||
X = point.X;
|
||||
Y = point.Y;
|
||||
@@ -34,7 +34,7 @@ public struct Point
|
||||
|
||||
public double Y { get; init; }
|
||||
|
||||
public static implicit operator Point(System.Drawing.Point point) => new Point(point.X, point.Y);
|
||||
public static implicit operator Point(Vanara.PInvoke.POINT point) => new Point(point.X, point.Y);
|
||||
|
||||
public static Point operator /(Point point, double divider)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user