From 68b220a8d4451405757802986303f7f69e532ff2 Mon Sep 17 00:00:00 2001 From: glax Date: Tue, 16 Apr 2024 20:59:42 +0200 Subject: [PATCH] Log-Output formatting --- OBSBlur/OBS/Blur.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OBSBlur/OBS/Blur.cs b/OBSBlur/OBS/Blur.cs index 7ba12c1..f09179e 100644 --- a/OBSBlur/OBS/Blur.cs +++ b/OBSBlur/OBS/Blur.cs @@ -206,7 +206,7 @@ public class Blur { uint i = 0; - string prnt = $"Z-order changed\n{"Z",3} | {"hWnd",8} | {"PID",8} | {"Name",17} | {"Window Title",-17} | {"State",-13} | BBox\n"; + string prnt = $"Z-order changed\n{"Z",-3} | {"hWnd",-8} | {"PID",-8} | {"Name",-17} | {"Window Title",-17} | {"State",-13} | BBox\n"; foreach (IntPtr windowHandle in neworder) { WindowInfo windowInfo = _windowManager.WindowInfos.FirstOrDefault(w => w.WindowHandle == windowHandle);