From 0d227cfb82669e62a8589bf44669679bb9787a30 Mon Sep 17 00:00:00 2001 From: souldbminersmwc Date: Wed, 13 May 2026 19:52:11 -0400 Subject: [PATCH] hocclk: add info about new feature --- Source/hoc-clk/overlay/src/ui/gui/misc_gui.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Source/hoc-clk/overlay/src/ui/gui/misc_gui.cpp b/Source/hoc-clk/overlay/src/ui/gui/misc_gui.cpp index e4f32636..1b3d05ce 100644 --- a/Source/hoc-clk/overlay/src/ui/gui/misc_gui.cpp +++ b/Source/hoc-clk/overlay/src/ui/gui/misc_gui.cpp @@ -553,8 +553,11 @@ void MiscGui::listUI() tsl::elm::CustomDrawer* rebootSetWarning = new tsl::elm::CustomDrawer([](tsl::gfx::Renderer *renderer, s32 x, s32 y, s32 w, s32 h) { renderer->drawString("\uE150 Settings marked in blue", false, x + 20, y + 30, 18, tsl::style::color::ColorText); renderer->drawString("don't require a reboot to apply!", false, x + 20, y + 50, 18, tsl::style::color::ColorText); + renderer->drawString("You can also press \ue0e3 to show", false, x + 20, y + 70, 18, tsl::style::color::ColorText); + renderer->drawString("information about each setting.", false, x + 20, y + 90, 18, tsl::style::color::ColorText); + }); - rebootSetWarning->setBoundaries(0, 0, tsl::cfg::FramebufferWidth, 70); + rebootSetWarning->setBoundaries(0, 0, tsl::cfg::FramebufferWidth, 110); this->listElement->addItem(rebootSetWarning); tsl::elm::ListItem* sysmoduleSettingsSubMenu = new tsl::elm::ListItem("General Settings");