summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--riscos/help.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/riscos/help.c b/riscos/help.c
index 70016a5be..1ee8ca8d7 100644
--- a/riscos/help.c
+++ b/riscos/help.c
@@ -281,11 +281,11 @@ int ro_gui_interactive_help_available() {
char *end;
os_t time;
- /* Check if we've received a help request in the last 0.5s to test for generic
+ /* Check if we've received a help request in the last 1.0s to test for generic
interactive help applications
*/
xos_read_monotonic_time(&time);
- if ((help_time + 50) > time) return true;
+ if ((help_time + 100) > time) return true;
/* Attempt to find the task 'Help'
*/
@@ -297,6 +297,8 @@ int ro_gui_interactive_help_available() {
*/
if (strncmp(task.name, "Help", 4) == 0) {
if (task.name[4] < 32) return true;
+ } else if (strncmp(task.name, "Floating Help", 13) == 0) {
+ if (task.name[13] < 32) return true;
}
} while (context >= 0);