summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Neumair <chris@gnome-de.org>2005-05-12 14:55:14 +0000
committerChristian Neumair <cneumair@src.gnome.org>2005-05-12 14:55:14 +0000
commit051e9307aa6cffffcfbb5039e95e75b837448924 (patch)
tree316c64434cccad42cd6f3884003ad7821e410505
parentc5e8a0a71d2087c8e18b2a5d21662f134bf26c2f (diff)
downloadnautilus-051e9307aa6cffffcfbb5039e95e75b837448924.tar.gz
Make "Location:" label GDK_ACTION_COPY drag source. Fixes #115942.
2005-05-12 Christian Neumair <chris@gnome-de.org> * src/nautilus-location-bar.c: (nautilus_location_bar_init): Make "Location:" label GDK_ACTION_COPY drag source. Fixes #115942.
-rw-r--r--ChangeLog7
-rw-r--r--src/nautilus-location-bar.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e5cc882ec..7a328fc6f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2005-05-12 Christian Neumair <chris@gnome-de.org>
+
+ * src/nautilus-location-bar.c:
+ (nautilus_location_bar_init):
+ Make "Location:" label GDK_ACTION_COPY drag source.
+ Fixes #115942.
+
2005-05-12 David Zeuthen <david@fubar.dk>
* libnautilus-private/apps_nautilus_preferences.schemas.in:
diff --git a/src/nautilus-location-bar.c b/src/nautilus-location-bar.c
index 0416e21c4..de7aa3d5a 100644
--- a/src/nautilus-location-bar.c
+++ b/src/nautilus-location-bar.c
@@ -406,7 +406,7 @@ nautilus_location_bar_init (NautilusLocationBar *bar)
gtk_drag_source_set (GTK_WIDGET (event_box),
GDK_BUTTON1_MASK | GDK_BUTTON3_MASK,
drag_types, G_N_ELEMENTS (drag_types),
- GDK_ACTION_LINK);
+ GDK_ACTION_COPY | GDK_ACTION_LINK);
g_signal_connect_object (event_box, "drag_data_get",
G_CALLBACK (drag_data_get_callback), bar, 0);