Menu

I want to change interval of white move and black move in Column Style

Help
2024-06-23
2024-06-29
  • hirai55hirai

    hirai55hirai - 2024-06-23

    I want to change interval of white move and black move in Column Style.

    Perhaps this interval is adjusted by the below code of scid.gui in "Scid vs PC-4.24\bin"

    set t1 [expr $fd_size / 10.0]c
    set t2 [expr $fd_size / 8.0]c
    set t3 [expr ($fd_size - 8) / 3.5 + 3 + 0.5*($fd_size > 13)]c
    .pgnWin.text configure  -tabs "$t1 right $t2 $t3"
    

    But I can't find out how I should change the code.
    What should I do for changing interval of white move and black move in Column Style ?
    Thank you.

     
  • Steven

    Steven - 2024-06-24

    You're in the right spot. t3 is the number to change, but it is not trivial to make it smaller.
    Change +3 to +2... But more changes are needed. Good luck. Fd-size is the font size. c means characters

     
  • hirai55hirai

    hirai55hirai - 2024-06-24

    Thank you.
    I roughly understood meaning of this code.
    I try to change interval by changing this code.
    Thank you for teaching!

     
  • Steven

    Steven - 2024-06-29

    Ok.. I've made a fix for this.
    You may still want to make the tabs smaller, but it should be simple now.
    See the changes to tcl/windows/pgn.tcl in this commit
    https://sourceforge.net/p/scidvspc/code/3466/

     

Log in to post a comment.