Add compiled=False to version checks
This commit is contained in:
parent
9af07d86d6
commit
63d23ca9df
@ -243,7 +243,7 @@ class WebEnginePage(QWebEnginePage):
|
||||
"""Override javaScriptConfirm to use qutebrowser prompts."""
|
||||
if self._is_shutting_down:
|
||||
return False
|
||||
escape_msg = qtutils.version_check('5.11') # QTBUG-66104
|
||||
escape_msg = qtutils.version_check('5.11', compiled=False)
|
||||
try:
|
||||
return shared.javascript_confirm(url, js_msg,
|
||||
abort_on=[self.loadStarted,
|
||||
@ -258,7 +258,7 @@ class WebEnginePage(QWebEnginePage):
|
||||
# https://www.riverbankcomputing.com/pipermail/pyqt/2016-November/038293.html
|
||||
def javaScriptPrompt(self, url, js_msg, default):
|
||||
"""Override javaScriptPrompt to use qutebrowser prompts."""
|
||||
escape_msg = qtutils.version_check('5.11') # QTBUG-66104
|
||||
escape_msg = qtutils.version_check('5.11', compiled=False)
|
||||
if self._is_shutting_down:
|
||||
return (False, "")
|
||||
try:
|
||||
@ -273,7 +273,7 @@ class WebEnginePage(QWebEnginePage):
|
||||
"""Override javaScriptAlert to use qutebrowser prompts."""
|
||||
if self._is_shutting_down:
|
||||
return
|
||||
escape_msg = qtutils.version_check('5.11') # QTBUG-66104
|
||||
escape_msg = qtutils.version_check('5.11', compiled=False)
|
||||
try:
|
||||
shared.javascript_alert(url, js_msg,
|
||||
abort_on=[self.loadStarted,
|
||||
|
Loading…
Reference in New Issue
Block a user