From 676b45070c93c61954768fb4c9771894a735985c Mon Sep 17 00:00:00 2001 From: David Rosca Date: Tue, 31 Jan 2012 11:35:03 +0100 Subject: [PATCH] Fixed typing "v" into web searchbar --- src/navigation/websearchbar.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/navigation/websearchbar.cpp b/src/navigation/websearchbar.cpp index c91037c4c..c90257032 100644 --- a/src/navigation/websearchbar.cpp +++ b/src/navigation/websearchbar.cpp @@ -309,6 +309,8 @@ void WebSearchBar::keyPressEvent(QKeyEvent* event) break; default: - LineEdit::keyPressEvent(event); + break; } + + LineEdit::keyPressEvent(event); }