Add a note about #730 to :inspect docs.

Fixes #730.
This commit is contained in:
Florian Bruhin 2015-07-16 20:54:10 +02:00
parent 83572948ca
commit 0972087e34
2 changed files with 7 additions and 1 deletions

View File

@ -243,6 +243,8 @@ Open main startpage in current tab.
=== inspector
Toggle the web inspector.
Note: Due a bug in Qt, the inspector will show incorrect request headers in the network tab.
[[jseval]]
=== jseval
Syntax: +:jseval [*--quiet*] 'js-code'+

View File

@ -1089,7 +1089,11 @@ class CommandDispatcher:
@cmdutils.register(instance='command-dispatcher', name='inspector',
scope='window')
def toggle_inspector(self):
"""Toggle the web inspector."""
"""Toggle the web inspector.
Note: Due a bug in Qt, the inspector will show incorrect request
headers in the network tab.
"""
cur = self._current_widget()
if cur.inspector is None:
if not config.get('general', 'developer-extras'):