Treat select elements as insert mode

This commit is contained in:
Florian Bruhin 2014-05-16 17:43:06 +02:00
parent 2c2c79af2e
commit 89cd6d87cc

View File

@ -189,7 +189,7 @@ class WebView(QWebView):
return False return False
elem = hitresult.element() elem = hitresult.element()
tag = elem.tagName().lower() tag = elem.tagName().lower()
if tag in ['embed', 'applet']: if tag in ['embed', 'applet', 'select']:
# Flash/Java/... # Flash/Java/...
return True return True
if tag == 'object': if tag == 'object':