show the MOVE cursor instead of the COPY cursor when dnding tabs

This commit is contained in:
Yann Leboulanger 2006-01-20 15:51:33 +00:00
parent c4ea6556bb
commit 20be4777a5
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ class MessageWindow:
self.hid = self.notebook.connect('drag_data_received', self.hid = self.notebook.connect('drag_data_received',
self.on_tab_label_drag_data_received_cb) self.on_tab_label_drag_data_received_cb)
self.notebook.drag_dest_set(gtk.DEST_DEFAULT_ALL, self.DND_TARGETS, self.notebook.drag_dest_set(gtk.DEST_DEFAULT_ALL, self.DND_TARGETS,
gtk.gdk.ACTION_COPY) gtk.gdk.ACTION_MOVE)
def _on_window_focus(self, widget, event): def _on_window_focus(self, widget, event):
# window received focus, so if we had urgency REMOVE IT # window received focus, so if we had urgency REMOVE IT