Skip to content

Commit

Permalink
enhancement: added missing help text in GUI->Priority
Browse files Browse the repository at this point in the history
  • Loading branch information
midwan committed Nov 9, 2023
1 parent 842b060 commit 1dd57ce
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/osdep/gui/PanelPrio.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,17 @@ void RefreshPanelPrio()
bool HelpPanelPrio(std::vector<std::string>& 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;
}

0 comments on commit 1dd57ce

Please sign in to comment.