summaryrefslogtreecommitdiffstats
path: root/demos/declarative/webbrowser/content/UrlInput.qml
diff options
context:
space:
mode:
Diffstat (limited to 'demos/declarative/webbrowser/content/UrlInput.qml')
-rw-r--r--demos/declarative/webbrowser/content/UrlInput.qml4
1 files changed, 4 insertions, 0 deletions
diff --git a/demos/declarative/webbrowser/content/UrlInput.qml b/demos/declarative/webbrowser/content/UrlInput.qml
index 9ea1904..b57fae6 100644
--- a/demos/declarative/webbrowser/content/UrlInput.qml
+++ b/demos/declarative/webbrowser/content/UrlInput.qml
@@ -73,6 +73,10 @@ Item {
urlText.text = webView.url
webView.focus = true
}
+ Keys.onEnterPressed: {
+ container.urlEntered(urlText.text)
+ webView.focus = true
+ }
Keys.onReturnPressed: {
container.urlEntered(urlText.text)
webView.focus = true