diff --git a/OBSBlur/Window/Point.cs b/OBSBlur/Window/Point.cs index 9dffb09..3519695 100644 --- a/OBSBlur/Window/Point.cs +++ b/OBSBlur/Window/Point.cs @@ -26,7 +26,7 @@ public struct Point public override string ToString() { - return $"{{X={X,-7:####0}, Y={Y,-7:####0}}}"; + return $"{{X={X,-6:####0}, Y={Y,-6:####0}}}"; } public override bool Equals(object? obj) diff --git a/OBSBlur/Window/Rectangle.cs b/OBSBlur/Window/Rectangle.cs index 6f69ad7..646ca52 100644 --- a/OBSBlur/Window/Rectangle.cs +++ b/OBSBlur/Window/Rectangle.cs @@ -94,6 +94,6 @@ public struct Rectangle public override string ToString() { - return $"{{Left={Left,-7:####0}, Top={Top,-7:####0}, Right={Right,-7:####0}, Bottom={Bottom,-7:####0}}}"; + return $"{{LTRB {Left,-6:####0},{Top,-6:####0},{Right,-6:####0},{Bottom,-6:####0}}}"; } } \ No newline at end of file