Fix inspector handling when inspector is disabled.
Do not try to show the inspector window when the inspector is disabled. Signed-off-by: Christoph Lohmann <20h@r-36.net>
This commit is contained in:
parent
1ebb5c624e
commit
2223e9ed22
10
surf.c
10
surf.c
|
@ -695,10 +695,12 @@ initdownload(WebKitWebView *view, WebKitDownload *o, Client *c)
|
|||
void
|
||||
inspector(Client *c, const Arg *arg)
|
||||
{
|
||||
if (c->isinspecting)
|
||||
webkit_web_inspector_close(c->inspector);
|
||||
else
|
||||
webkit_web_inspector_show(c->inspector);
|
||||
if (enableinspector) {
|
||||
if (c->isinspecting)
|
||||
webkit_web_inspector_close(c->inspector);
|
||||
else
|
||||
webkit_web_inspector_show(c->inspector);
|
||||
}
|
||||
}
|
||||
|
||||
WebKitWebView *
|
||||
|
|
Loading…
Reference in New Issue