From a31d0897123ab90c8d4a8304619834079c3ad5a9 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Sat, 18 Jun 2011 20:45:12 +0200 Subject: [PATCH] Add Score in Move List option to general options dialog XB Now that we have a WinBoard-style Move History window, this option is no longer a no-op in XBoard. --- xoptions.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/xoptions.c b/xoptions.c index 095136e..a6a3059 100644 --- a/xoptions.c +++ b/xoptions.c @@ -377,6 +377,7 @@ Option generalOptions[] = { { 0, 0, 0, NULL, (void*) &appData.ponderNextMove, "", NULL, CheckBox, N_("Ponder Next Move") }, { 0, 0, 0, NULL, (void*) &appData.popupExitMessage, "", NULL, CheckBox, N_("Popup Exit Messages") }, { 0, 0, 0, NULL, (void*) &appData.popupMoveErrors, "", NULL, CheckBox, N_("Popup Move Errors") }, +{ 0, 0, 0, NULL, (void*) &appData.showEvalInMoveHistory, "", NULL, CheckBox, N_("Scores in Move List") }, { 0, 0, 0, NULL, (void*) &appData.showCoords, "", NULL, CheckBox, N_("Show Coordinates") }, { 0, 0, 0, NULL, (void*) &appData.markers, "", NULL, CheckBox, N_("Show Target Squares") }, { 0, 0, 0, NULL, (void*) &appData.testLegality, "", NULL, CheckBox, N_("Test Legality") }, -- 1.7.0.4