From 4c91bf9f63bc32d1640da034a00796a6a49d158a Mon Sep 17 00:00:00 2001 From: NiLuJe Date: Thu, 24 Oct 2024 15:15:11 +0200 Subject: [PATCH] OTA: Make the final ConfirmBox undismissable It's relatively easy to miss-click the buttons, especially on devices with questionable touch panels... And while doing so is perfectly fine, you miss the InfoMessage telling you that the update will be applied on restart, which is potentially confusing. Re: #12674 --- frontend/device/generic/device.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/device/generic/device.lua b/frontend/device/generic/device.lua index 2d84e01f9..3199548cd 100644 --- a/frontend/device/generic/device.lua +++ b/frontend/device/generic/device.lua @@ -455,9 +455,11 @@ function Device:install() UIManager:show(InfoMessage:new{ text = _("The update will be applied the next time KOReader is started."), unmovable = true, + dismissable = false, }) end, unmovable = true, + dismissable = false, }) end