From 399a62aba937d0adac01276209f7404ca8981442 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Sat, 18 Feb 2023 21:38:31 +0100 Subject: [PATCH] Made the release update notification popup slightly narrower when running on vertically oriented screens. --- es-app/src/views/ViewController.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-app/src/views/ViewController.cpp b/es-app/src/views/ViewController.cpp index bf4e5a545..8710539fc 100644 --- a/es-app/src/views/ViewController.cpp +++ b/es-app/src/views/ViewController.cpp @@ -213,7 +213,7 @@ void ViewController::updateAvailableDialog(const std::string& message) mWindow->pushGui(new GuiMsgBox(getHelpStyle(), message, "OK", nullptr, "", nullptr, "", nullptr, true, true, (mRenderer->getIsVerticalOrientation() ? - 0.85f : + 0.70f : 0.45f * (1.778f / mRenderer->getScreenAspectRatio())))); }