From 456ca4fea2c7092aaaf14e9bc827e534f96e4d22 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Sun, 2 Feb 2014 17:27:26 +0100 Subject: [PATCH] Add logo-size control XBoard This is mainly for the benefit of OS X useres who cannot find their settings file. It requires a restart to become effective, which is really sub-standard. --- dialogs.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/dialogs.c b/dialogs.c index e69567e..fce7e18 100644 --- a/dialogs.c +++ b/dialogs.c @@ -902,6 +902,7 @@ static Option boardOptions[] = { { 0, 0, 0, NULL, (void*) &appData.upsideDown, "", NULL, CheckBox, N_("Flip Pieces Shogi Style (Colored buttons restore default)") }, //{ 0, 0, 0, NULL, (void*) &appData.allWhite, "", NULL, CheckBox, N_("Use Outline Pieces for Black") }, { 0, 0, 0, NULL, (void*) &appData.monoMode, "", NULL, CheckBox, N_("Mono Mode") }, +{ 0, 0, 200, NULL, (void*) &appData.logoSize, "", NULL, Spin, N_("Logo Size (0=off, requires restart):") }, { 0,-1, 5, NULL, (void*) &appData.overrideLineGap, "", NULL, Spin, N_("Line Gap (-1 = default for board size):") }, { 0, 0, 0, NULL, (void*) &appData.useBitmaps, "", NULL, CheckBox, N_("Use Board Textures") }, { 0, 0, 0, NULL, (void*) &appData.liteBackTextureFile, ".png", NULL, FileName, N_("Light-Squares Texture File:") }, -- 1.7.0.4