From 10105c8b87a1e3e4c5b98100a6947f1c350561da Mon Sep 17 00:00:00 2001 From: Quentin Rameau Date: Sun, 22 Nov 2015 13:15:39 +0100 Subject: [PATCH] Fix pasteuri() The uri check had been inverted. --- surf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/surf.c b/surf.c index 5043d33..5c9520f 100644 --- a/surf.c +++ b/surf.c @@ -1220,7 +1220,7 @@ void pasteuri(GtkClipboard *clipboard, const char *text, gpointer d) { Arg a = {.v = text }; - if (!text) + if (text) loaduri((Client *) d, &a); } -- 2.20.1