Aggiunta la perdita del focus a video sui button_field

git-svn-id: svn://10.65.10.50/trunk@2444 c028cbd2-c16b-5b4b-a496-9718f37d4682
This commit is contained in:
alex 1996-01-12 18:13:15 +00:00
parent d3e99e3642
commit 4086b06ad9

View File

@ -2656,7 +2656,12 @@ bool TButton_field::on_key(KEY key)
{
on_hit();
return TRUE;
}
}
else
{
if (key == K_ENTER)
xvt_kill_focus(win());
}
return TMask_field::on_key(key);
}