Improve error message on OS X without QtWebEngine
This commit is contained in:
parent
9ff006746f
commit
7b82d81784
@ -59,9 +59,13 @@ def _missing_str(name, *, windows=None, pip=None, webengine=False):
|
|||||||
'distributions packages, or install it via pip.'.format(name)]
|
'distributions packages, or install it via pip.'.format(name)]
|
||||||
blocks.append('<br />'.join(lines))
|
blocks.append('<br />'.join(lines))
|
||||||
if webengine:
|
if webengine:
|
||||||
lines = ['Note QtWebEngine is not available for some distributions '
|
lines = [
|
||||||
|
'Note QtWebEngine is not available for some distributions '
|
||||||
'(like Debian/Ubuntu), so you need to start without '
|
'(like Debian/Ubuntu), so you need to start without '
|
||||||
'--backend webengine there.']
|
'--backend webengine there.',
|
||||||
|
'QtWebEngine is currently unsupported with the OS X .app, see '
|
||||||
|
'https://github.com/The-Compiler/qutebrowser/issues/1692',
|
||||||
|
]
|
||||||
else:
|
else:
|
||||||
lines = ['<b>If you installed a qutebrowser package for your '
|
lines = ['<b>If you installed a qutebrowser package for your '
|
||||||
'distribution, please report this as a bug.</b>']
|
'distribution, please report this as a bug.</b>']
|
||||||
|
Loading…
Reference in New Issue
Block a user