Fix Bold button and application of commentFont
authorH.G.Muller <hgm@hgm-xboard.(none)>
Wed, 6 Apr 2016 10:13:52 +0000 (12:13 +0200)
committerH.G.Muller <hgm@hgm-xboard.(none)>
Sun, 17 Apr 2016 08:24:58 +0000 (10:24 +0200)
Oops! The B button in the Fonts dialog had disappeared with the
suppression of the B(lue) button in the Board dialog! The comment
font was applied to the wrong widget in the Edit Comment dialog.

dialogs.c

index 38f163c..c8c5729 100644 (file)
--- a/dialogs.c
+++ b/dialogs.c
@@ -1642,7 +1642,7 @@ FontsOK (int n)
     }
     LockBoardSize(1); // unlock
     if(strcmp(oldFont[3], appData.tagsFont)) fontChanged[EDITTAGS_FONT] = 1, ApplyFont(&tagsOptions[1], NULL);
-    if(strcmp(oldFont[4], appData.commentFont)) fontChanged[COMMENT_FONT] = 1, ApplyFont(&commentOptions[1], NULL);
+    if(strcmp(oldFont[4], appData.commentFont)) fontChanged[COMMENT_FONT] = 1, ApplyFont(&commentOptions[0], NULL);
     if(strcmp(oldFont[5], appData.historyFont)) {
        fontChanged[MOVEHISTORY_FONT] = 1;
        ApplyFont(&historyOptions[0], NULL);