From 1dd57cebf3ad3822a66cad20d7ecf88a24a080bc Mon Sep 17 00:00:00 2001 From: Dimitris Panokostas Date: Thu, 9 Nov 2023 17:05:39 +0100 Subject: [PATCH] enhancement: added missing help text in GUI->Priority Kudos to @giantclambake --- src/osdep/gui/PanelPrio.cpp | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/osdep/gui/PanelPrio.cpp b/src/osdep/gui/PanelPrio.cpp index 595315370..6258bced6 100644 --- a/src/osdep/gui/PanelPrio.cpp +++ b/src/osdep/gui/PanelPrio.cpp @@ -331,6 +331,17 @@ void RefreshPanelPrio() bool HelpPanelPrio(std::vector& helptext) { helptext.clear(); - //todo + helptext.emplace_back(" "); + helptext.emplace_back("In this panel you can configure the task priority for Amiberry, under different usage"); + helptext.emplace_back("scenarios. In most cases, the default settings work fine here."); + helptext.emplace_back(" "); + helptext.emplace_back("\"When Active\" - Set the priority options for when Amiberry is currently active."); + helptext.emplace_back(" \|"); + helptext.emplace_back(" \"Mouse uncaptured\" - Set what Amiberry does when active and mouse capture is lost."); + helptext.emplace_back(" "); + helptext.emplace_back("\"When Inactive\" - Set the priority options for when Amiberry is currently inactive."); + helptext.emplace_back(" "); + helptext.emplace_back("\"When Minimized\" - Set the priority options for when Amiberry is minimized."); + helptext.emplace_back(" "); return true; } \ No newline at end of file