* src/MedaiView.py: pass handle instead of GRAMPS ID during drag-n-drop
svn: r4294
This commit is contained in:
parent
0594e406d7
commit
8239697464
@ -1,3 +1,6 @@
|
|||||||
|
2005-04-04 Don Allingham <don@gramps-project.org>
|
||||||
|
* src/MedaiView.py: pass handle instead of GRAMPS ID during drag-n-drop
|
||||||
|
|
||||||
2005-04-01 Richard Taylor <rjt-gramps@thegrindstone.me.uk>
|
2005-04-01 Richard Taylor <rjt-gramps@thegrindstone.me.uk>
|
||||||
* src/GrampsDBCallback.py: Don't check callbacks if the dict is empty.
|
* src/GrampsDBCallback.py: Don't check callbacks if the dict is empty.
|
||||||
|
|
||||||
|
@ -347,7 +347,7 @@ class MediaView:
|
|||||||
store,node = self.selection.get_selected()
|
store,node = self.selection.get_selected()
|
||||||
if not node:
|
if not node:
|
||||||
return
|
return
|
||||||
handle = store.get_value(node,1)
|
handle = store.get_value(node,_HANDLE_COL)
|
||||||
selection_data.set(selection_data.target, 8, handle)
|
selection_data.set(selection_data.target, 8, handle)
|
||||||
|
|
||||||
def on_drag_data_received(self,w, context, x, y, data, info, time):
|
def on_drag_data_received(self,w, context, x, y, data, info, time):
|
||||||
|
Loading…
Reference in New Issue
Block a user