From 5d34e50444d0107bfe7d10ea2a38b003d130df24 Mon Sep 17 00:00:00 2001 From: H.G.Muller Date: Thu, 2 Nov 2017 12:14:13 +0100 Subject: [PATCH] Pay attention to dont-add-to-list checkbox again Although it is questionable whether this checkbox will remain in the log run, as long as it is there we better obey it. --- backend.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/backend.c b/backend.c index 0e0a5b8..0328a58 100644 --- a/backend.c +++ b/backend.c @@ -952,6 +952,7 @@ SaveEngineList () void AddToEngineList (int i) { + if(addToList) { int len; char quote, buf[MSG_SIZ]; char *q = firstChessProgramNames, *p = newEngineCommand; @@ -975,6 +976,7 @@ AddToEngineList (int i) SaveEngineList(); FloatToFront(&appData.recentEngineList, buf); ASSIGN(currentEngine[i], buf); + } } void -- 1.7.0.4