From 69d21dbcf4d13bacd6f4df265f17153c46be1765 Mon Sep 17 00:00:00 2001 From: Howon Lee Date: Fri, 29 Jul 2022 20:00:56 +0900 Subject: [PATCH] Added HiDPI support --- RunCat/Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/RunCat/Program.cs b/RunCat/Program.cs index 15fe407f..4a1355f2 100644 --- a/RunCat/Program.cs +++ b/RunCat/Program.cs @@ -38,6 +38,7 @@ static void Main() Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); + Application.SetHighDpiMode(HighDpiMode.SystemAware); Application.Run(new RunCatApplicationContext()); procMutex.ReleaseMutex();