Fix lint
This commit is contained in:
parent
f57afa39e8
commit
25ff649efe
|
|
@ -49,6 +49,7 @@ Fixed
|
|||
(#8674).
|
||||
- Fixed exception when closing a qutebrowser window while a download prompt is
|
||||
still open.
|
||||
- Fixed crash with Qt 6.10 (and possibly older Qt versions) when navigating from a `qute://` page to a web page, e.g. when searching on `qute://start`
|
||||
|
||||
[[v3.5.1]]
|
||||
v3.5.1 (2025-06-05)
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ if TYPE_CHECKING:
|
|||
from qutebrowser.keyinput import modeman
|
||||
from qutebrowser.config import config, websettings
|
||||
from qutebrowser.utils import (utils, objreg, usertypes, log, qtutils,
|
||||
urlutils, message, jinja, version)
|
||||
urlutils, message, jinja)
|
||||
from qutebrowser.misc import miscwidgets, objects, sessions
|
||||
from qutebrowser.browser import eventfilter, inspector
|
||||
from qutebrowser.qt import sip
|
||||
|
|
|
|||
|
|
@ -1659,8 +1659,7 @@ class WebEngineTab(browsertab.AbstractTab):
|
|||
|
||||
# WORKAROUND for QtWebEngine 6.2 - 6.5 blocking back/forward navigation too
|
||||
if (
|
||||
qtwe_ver >= utils.VersionNumber(6, 2) and
|
||||
qtwe_ver < utils.VersionNumber(6, 6) and
|
||||
utils.VersionNumber(6, 6) > qtwe_ver >= utils.VersionNumber(6, 2) and
|
||||
self.url() == QUrl("qute://bookmarks/") and
|
||||
navigation.navigation_type == navigation.Type.back_forward
|
||||
):
|
||||
|
|
|
|||
Loading…
Reference in New Issue