diff options
author | Quentin Rameau <quinq@fifth.space> | 2015-11-22 13:15:39 +0100 |
---|---|---|
committer | Quentin Rameau <quinq@fifth.space> | 2015-11-22 13:15:39 +0100 |
commit | 10105c8b87a1e3e4c5b98100a6947f1c350561da (patch) | |
tree | fcdd10e47c8aa9302e5a3e540ee2ddbbe8fc3a23 | |
parent | 7c24c61ab22990ce8dd8158706f11ae7cba77bf0 (diff) | |
download | surf-10105c8b87a1e3e4c5b98100a6947f1c350561da.tar.gz surf-10105c8b87a1e3e4c5b98100a6947f1c350561da.tar.bz2 surf-10105c8b87a1e3e4c5b98100a6947f1c350561da.zip |
Fix pasteuri()
The uri check had been inverted.
-rw-r--r-- | surf.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |