Fix pasteuri()
The uri check had been inverted.
This commit is contained in:
parent
7c24c61ab2
commit
10105c8b87
1 changed files with 1 additions and 1 deletions
2
surf.c
2
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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue