From f5528850aca4ef4c34bc805dd061e047f9b44ee5 Mon Sep 17 00:00:00 2001 From: vit9696 Date: Mon, 29 Jun 2020 07:23:12 +0300 Subject: [PATCH] OpenCanopy: Fixed incorrect volume icon dimension requirements closes acidanthera/bugtracker#1011 --- Changelog.md | 1 + Platform/OpenCanopy/Views/BootPicker.c | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Changelog.md b/Changelog.md index d599e637..a8afc18d 100644 --- a/Changelog.md +++ b/Changelog.md @@ -25,6 +25,7 @@ OpenCore Changelog - Added `AppleFramebufferInfo` protocol implementation and override - Fixed serial initialisation when file logging is disabled - Fixed FSBFrequency reporting on Meron and similar CPUs +- Fixed incorrect volume icon dimension requirements in OpenCanopy #### v0.5.9 - Added full HiDPI support in OpenCanopy diff --git a/Platform/OpenCanopy/Views/BootPicker.c b/Platform/OpenCanopy/Views/BootPicker.c index 1b42ab24..8c945f46 100644 --- a/Platform/OpenCanopy/Views/BootPicker.c +++ b/Platform/OpenCanopy/Views/BootPicker.c @@ -834,8 +834,8 @@ BootPickerEntriesAdd ( IconFileData, IconFileSize, GuiContext->Scale, - BOOT_ENTRY_ICON_DIMENSION * GuiContext->Scale, - BOOT_ENTRY_ICON_DIMENSION * GuiContext->Scale, + BOOT_ENTRY_ICON_DIMENSION, + BOOT_ENTRY_ICON_DIMENSION, FALSE ); FreePool (IconFileData); -- GitLab