From 4a9ee0ca141c56ad69d68a93b8cce7799a040de5 Mon Sep 17 00:00:00 2001 From: H.G.Muller Date: Tue, 22 Mar 2016 15:38:00 +0100 Subject: [PATCH] Pop up warning when engine manual is not available Help clicks on the engine dialog pop up a warning when the manual is not found. It seems useful to alert the user that this info has to come from the manual of the engine' rather than XBoard's. --- dialogs.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dialogs.c b/dialogs.c index d8f1684..fa481d3 100644 --- a/dialogs.c +++ b/dialogs.c @@ -2555,7 +2555,7 @@ DisplayHelp (char *name) } else textPtr = NULL; // use plaintext man file directly GetHelpText(f, name); fclose(f); - } + } else if(currentCps) DisplayNote("No manual is installed for this engine"); } #define PAUSE_BUTTON "P" -- 1.7.0.4