Re: [Scidvspc-users] Analysis Window
Chess Database and Toolkit program
Brought to you by:
stevenaaus
|
From: Steven <ste...@ya...> - 2012-04-09 20:28:04
|
> - The Status Bar of the analysis window seems to be absent
The "i" button shows the info bar
> and the right mouse click doesn't hide the move previsions.
> Is it normal (scidvspc for mac 4.7) ?
On OSX, right and middle buttons are reversed in tk. *&^!*
It's an annoying OSX issue, and I should probably patch the
OSX version specifically to fix this... change
bind $w.hist.text <ButtonPress-3> "toggleMovesDisplay $n"
to
... <ButtonPress-2>
On OSX, ou can alter the gui file from the command line with
"vi ScidvsMac.app/Contents/MacOS/scid"
> - Is there a way to display the move previsions in column
> style in the analysis window, especially when using the
> multi-PV mode
change
text $w.hist.text -font font_Fixed -height 5 \
-wrap none -setgrid 1 -yscrollcommand "$w.hist.ybar set" -xscrollcommand "$w.hist.xbar set"
to
... -wrap word
These options should be added by the next release.
S.
|