summaryrefslogtreecommitdiff
path: root/surf.c
diff options
context:
space:
mode:
Diffstat (limited to 'surf.c')
-rw-r--r--surf.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/surf.c b/surf.c
index e1420b0..860cfaa 100644
--- a/surf.c
+++ b/surf.c
@@ -229,6 +229,7 @@ static void togglecookiepolicy(Client *c, const Arg *a);
static void toggleinspector(Client *c, const Arg *a);
static void find(Client *c, const Arg *a);
static void sendext(Client *c, const Arg *a);
+static void quit(Client *c, const Arg *a);
/* Buttons */
static void clicknavigate(Client *c, const Arg *a, WebKitHitTestResult *h);
@@ -1047,6 +1048,11 @@ destroyclient(Client *c)
free(c);
}
+void quit(Client *c, const Arg *a)
+{
+ gtk_widget_destroy(c->win);
+}
+
void
cleanup(void)
{