This commit is contained in:
Florian Bruhin 2025-10-01 17:14:43 +02:00
parent f57afa39e8
commit 25ff649efe
3 changed files with 3 additions and 3 deletions

View File

@ -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)

View File

@ -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

View File

@ -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
):