From: H.G. Muller Date: Sat, 18 Jun 2011 18:45:12 +0000 (+0200) Subject: Add Score in Move List option to general options dialog XB X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=a31d0897123ab90c8d4a8304619834079c3ad5a9;p=xboard.git 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. --- 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") },