From 4b333f3a6ba18c147e66ee2057dfdcc1b382a3d0 Mon Sep 17 00:00:00 2001 From: keringo <> Date: Thu, 26 Jun 2025 00:40:39 +0300 Subject: [PATCH] notification message --- frontend/apps/reader/modules/readerview.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/apps/reader/modules/readerview.lua b/frontend/apps/reader/modules/readerview.lua index 6f16f0cb4..f173b4747 100644 --- a/frontend/apps/reader/modules/readerview.lua +++ b/frontend/apps/reader/modules/readerview.lua @@ -1106,7 +1106,7 @@ function ReaderView:onBlackLevelUpdate(black_hex, no_notification) self.ui:handleEvent(Event:new("UpdateScrollPageBlackLevel", black_hex)) end if not no_notification then - Notification:notify(T(_("Black level set to: %1."), black_hex)) + Notification:notify(T(_("Black level set to: %1."), string.format("#%x", black_hex))) end end @@ -1116,7 +1116,7 @@ function ReaderView:onWhiteLevelUpdate(white_hex, no_notification) self.ui:handleEvent(Event:new("UpdateScrollPageWhiteLevel", white_hex)) end if not no_notification then - Notification:notify(T(_("White level set to: %1."), white_hex)) + Notification:notify(T(_("White level set to: %1."), string.format("#%x", white_hex))) end end