From cd2181a8b5209cf37b31f1d0c096f80dc9ffcf85 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Mon, 31 Jul 2023 20:35:30 +0200 Subject: [PATCH] Fixed an issue where an ApplicationUpdater dialog did not have themed help prompts --- es-app/src/views/ViewController.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/es-app/src/views/ViewController.cpp b/es-app/src/views/ViewController.cpp index 2b160840e..946828399 100644 --- a/es-app/src/views/ViewController.cpp +++ b/es-app/src/views/ViewController.cpp @@ -354,8 +354,8 @@ void ViewController::updateAvailableDialog() "THE UPGRADE."; } mWindow->pushGui(new GuiMsgBox( - HelpStyle(), upgradeMessage.c_str(), "OK", [] {}, "", nullptr, "", nullptr, - true, true, + getHelpStyle(), upgradeMessage.c_str(), "OK", [] {}, "", nullptr, "", + nullptr, true, true, (mRenderer->getIsVerticalOrientation() ? 0.85f : 0.53f * (1.778f / mRenderer->getScreenAspectRatio()))));