From 226ddb4172221ace0704799d436b65a7f7afbc8d Mon Sep 17 00:00:00 2001 From: Kazuhiro Fujieda Date: Tue, 16 Jan 2018 23:30:12 +0900 Subject: [PATCH] Fix some images of KanColle have a white region in bottom --- BurageSnap/Capture.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BurageSnap/Capture.cs b/BurageSnap/Capture.cs index 0e2094e..263b445 100644 --- a/BurageSnap/Capture.cs +++ b/BurageSnap/Capture.cs @@ -585,7 +585,10 @@ namespace BurageSnap } var r = rect.Height % 10; if (top > rect.Width / 2 && r != 0) + { + rect.Y -= 10 - r; rect.Height += 10 - r; + } } } } \ No newline at end of file -- 2.11.0