in reply to Tk DialogBox Enter key behavior

Hi,

remove the Dialogs <Return> binding:

use strict; use warnings; use Tk; my $mw = tkinit; my $d = $mw->DialogBox(); $d->add('Text')->pack; $d->bind('<Return>',''); $d->Show;

Cheers, Christoph