Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xactivity.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/activity.py b/activity.py
index 772285b..a62e4c7 100755
--- a/activity.py
+++ b/activity.py
@@ -108,10 +108,11 @@ class VteActivity(ViewSourceActivity):
[])
self._vte.connect('selection-changed', self._on_selection_changed_cb)
# FIXME It does not work because it expects and receives StructMeta Gtk.TargetEntry
- '''
- self._vte.drag_dest_set(Gtk.DestDefaults.ALL,
- [("text/plain", 0, TARGET_TYPE_TEXT)],
- Gdk.DragAction.COPY)'''
+ #
+ #self._vte.drag_dest_set(Gtk.DestDefaults.ALL,
+ # [("text/plain", 0, TARGET_TYPE_TEXT)],
+ # Gdk.DragAction.COPY)
+
self._vte.connect('drag_data_received', self._on_drop_cb)
# ...and its scrollbar
vtebox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)