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
|
void
|
||||||
inspector(Client *c, const Arg *arg)
|
inspector(Client *c, const Arg *arg)
|
||||||
{
|
{
|
||||||
if (c->isinspecting)
|
if (enableinspector) {
|
||||||
webkit_web_inspector_close(c->inspector);
|
if (c->isinspecting)
|
||||||
else
|
webkit_web_inspector_close(c->inspector);
|
||||||
webkit_web_inspector_show(c->inspector);
|
else
|
||||||
|
webkit_web_inspector_show(c->inspector);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
WebKitWebView *
|
WebKitWebView *
|
||||||
|
|
Loading…
Reference in New Issue