Adding Evan Gates' patch.
[surf.git] / surf.c
diff --git a/surf.c b/surf.c
index a4dc3be..3a42128 100644 (file)
--- a/surf.c
+++ b/surf.c
@@ -176,7 +176,7 @@ clipboard(Client *c, const Arg *arg) {
        if(paste)
                gtk_clipboard_request_text(gtk_clipboard_get(GDK_SELECTION_PRIMARY), pasteuri, c);
        else
-               gtk_clipboard_set_text(gtk_clipboard_get(GDK_SELECTION_PRIMARY), geturi(c), -1);
+               gtk_clipboard_set_text(gtk_clipboard_get(GDK_SELECTION_PRIMARY), c->linkhover ? c->linkhover : geturi(c), -1);
 }
 
 void
@@ -390,13 +390,13 @@ linkhover(WebKitWebView *v, const char* t, const char* l, Client *c) {
 void
 loadcommit(WebKitWebView *view, WebKitWebFrame *f, Client *c) {
        setatom(c, uriprop, geturi(c));
-       reloadcookies();
 }
 
 void
 loadstart(WebKitWebView *view, WebKitWebFrame *f, Client *c) {
        c->progress = 0;
        update(c);
+       reloadcookies();
 }
 
 void