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:
Quentin Rameau 2015-11-03 15:42:30 +01:00 committed by Christoph Lohmann
parent 1ebb5c624e
commit 2223e9ed22
1 changed files with 6 additions and 4 deletions

10
surf.c
View File

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