From db75c4c71eb9607caa7772df9e191f435b894120 Mon Sep 17 00:00:00 2001 From: fotidim Date: Thu, 28 Nov 2024 21:56:49 +0100 Subject: [PATCH] Increase pin entry window size on Windows 10 --- windows/src/pin_entry.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/src/pin_entry.h b/windows/src/pin_entry.h index e0c0e41..4b86bc4 100644 --- a/windows/src/pin_entry.h +++ b/windows/src/pin_entry.h @@ -16,7 +16,7 @@ namespace universal_ble TCHAR textBoxText[16]; // Positions and dimensions of UI elements: X, Y, Width, Height - const SizeAndPos_t mainWindow = {150, 150, 450, 240}; + const SizeAndPos_t mainWindow = {150, 150, 450, 260}; const SizeAndPos_t txtEdit = {50, 40, 320, 40}; const SizeAndPos_t btnOK = {50, 100, 320, 40};