diff --git a/src/apps/webpositive/URLInputGroup.cpp b/src/apps/webpositive/URLInputGroup.cpp index 99072acc15..b372fcfbdc 100644 --- a/src/apps/webpositive/URLInputGroup.cpp +++ b/src/apps/webpositive/URLInputGroup.cpp @@ -269,6 +269,10 @@ URLInputGroup::URLTextView::KeyDown(const char* bytes, int32 numBytes) SelectAll(); break; + case B_RETURN: + // Don't let this through to the text view. + break; + default: BTextView::KeyDown(bytes, numBytes); break;