Re: [Scid-users] Help modifying keyboard.tcl

2016-12-01 Thread Igor Sosa Mayor
Fulvio writes: > bind $w { > eval [excludeTextWidget %W] > set ::showGameInfo [expr {! $::showGameInfo}] > ::toggleGameInfo > break > } > > > The "eval [" line disable the shortcut for text widgets (without > this line, writing a comment with a comma will

Re: [Scid-users] Help modifying keyboard.tcl

2016-12-01 Thread Fulvio
Igor Sosa Mayor wrote: > Hi again, > > sorry for asking again... > > I wnat to bind to showGameInfo. I put: > > bind $w { > toggleGameInfo > } > > or > > bind $w { > ::toggleGameInfo > } > > I also tried F12 (disabling the later bind to corresp

[Scid-users] Help modifying keyboard.tcl

2016-12-01 Thread Igor Sosa Mayor
Hi again, sorry for asking again... I wnat to bind to showGameInfo. I put: bind $w { toggleGameInfo } or bind $w { ::toggleGameInfo } I also tried F12 (disabling the later bind to correspondence) without any success... Any hi