Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Ortiz <rafael@activitycentral.com>2012-06-30 07:17:38 (GMT)
committer Rafael Ortiz <rafael@activitycentral.com>2012-06-30 07:17:38 (GMT)
commit40f862b07b3b26449a7b3260bc7c00739fb081f7 (patch)
tree4293972aaf11d5563ab039543c7be03b196a095f
parent165b9e4f5444a829f5d67832f59bd467f516afce (diff)
inline comment should be with '#' not with '''
-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)