From 5541f278f0b13abebdeb1a0786695549b7ce8221 Mon Sep 17 00:00:00 2001 From: Daniel Carl Date: Sat, 9 Mar 2013 01:20:48 +0100 Subject: [PATCH] Changed error message if inspect command is called. If the webinspector isn't enabled the error messaged showed the webkit setting that is not set to use the webinspector. But this setting has an alias and can therefore only be set by the alias. So we print the alias in the error message. --- src/command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/command.c b/src/command.c index 562150f..9cd7608 100644 --- a/src/command.c +++ b/src/command.c @@ -352,7 +352,7 @@ gboolean command_inspect(Client* c, const Arg* arg) return TRUE; } - vp_echo(c, VP_MSG_ERROR, TRUE, "enable-developer-extras not enabled"); + vp_echo(c, VP_MSG_ERROR, TRUE, "webinspector is not enabled"); return FALSE; } -- 2.20.1