Disable search workaround for Qt 5.9.2
This commit is contained in:
parent
338d62204e
commit
6a8d2ac826
@ -715,7 +715,8 @@ class WebEngineTab(browsertab.AbstractTab):
|
|||||||
@pyqtSlot()
|
@pyqtSlot()
|
||||||
def _on_load_started(self):
|
def _on_load_started(self):
|
||||||
"""Clear search when a new load is started if needed."""
|
"""Clear search when a new load is started if needed."""
|
||||||
if qtutils.version_check('5.9'):
|
if (qtutils.version_check('5.9') and
|
||||||
|
not qtutils.version_check('5.9.2')):
|
||||||
# WORKAROUND for
|
# WORKAROUND for
|
||||||
# https://bugreports.qt.io/browse/QTBUG-61506
|
# https://bugreports.qt.io/browse/QTBUG-61506
|
||||||
self.search.clear()
|
self.search.clear()
|
||||||
|
Loading…
Reference in New Issue
Block a user