From 3cbe547288d3072ed1f640618337fb3a8750f1cc Mon Sep 17 00:00:00 2001 From: "jst%netscape.com" Date: Sat, 24 May 2003 07:28:50 +0000 Subject: [PATCH] Disable annoying 'beep' when pressing enter in the url bar. Not part of the build. git-svn-id: svn://10.0.0.236/trunk@142892 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/embedding/tests/MSDotNETCSEmbed/MSDotNETCSEmbedForm.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/mozilla/embedding/tests/MSDotNETCSEmbed/MSDotNETCSEmbedForm.cs b/mozilla/embedding/tests/MSDotNETCSEmbed/MSDotNETCSEmbedForm.cs index a6b87d21adc..b64ee0cc4cf 100644 --- a/mozilla/embedding/tests/MSDotNETCSEmbed/MSDotNETCSEmbedForm.cs +++ b/mozilla/embedding/tests/MSDotNETCSEmbed/MSDotNETCSEmbedForm.cs @@ -175,6 +175,7 @@ namespace MSDotNETCSEmbed { case '\r': gecko1.OpenURL(urlBar.Text); + e.Handled = true; break; } }