[epiphany] ephy-window: fix shift+click



commit b70985ca461f7bdde0d56fae456d8f16f6a599a8
Author: Claudio Saavedra <csaavedra igalia com>
Date:   Thu Mar 6 14:35:49 2014 +0200

    ephy-window: fix shift+click
    
    The check for the clicked address was inverted so this was not working
    at all.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=725818

 src/ephy-window.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/ephy-window.c b/src/ephy-window.c
index ce5927c..ab48a36 100644
--- a/src/ephy-window.c
+++ b/src/ephy-window.c
@@ -1876,7 +1876,7 @@ save_target_uri (EphyWindow *window,
                g_object_get (G_OBJECT (hit_test_result), "image-uri", &location, NULL);
        }
 
-       if (!location)
+       if (location)
        {
                LOG ("Location: %s", location);
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]