in reply to Re: A graphical regular expression tester.
in thread A graphical regular expression tester.
...and the bug has gone. I've no idea why though. Anyone?< $check_switch_i->bind('<Button-1>', \&button_run('now')); < $check_switch_m->bind('<Button-1>', \&button_run('now')); < $check_switch_s->bind('<Button-1>', \&button_run('now')); > $check_switch_i->bind('<Button-1>', sub { button_run('now') }); > $check_switch_m->bind('<Button-1>', sub { button_run('now') }); > $check_switch_s->bind('<Button-1>', sub { button_run('now') });
Cheers, Rob
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: A graphical regular expression tester.
by liverpole (Monsignor) on Dec 07, 2006 at 19:00 UTC |