* src/plugins/ScratchPad.py: fix GdkAtom index problem with pygtk2.4

svn: r4591
This commit is contained in:
Don Allingham 2005-05-14 05:33:38 +00:00
parent 51ff1e909e
commit 5934f15111
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2005-05-13 Don Allingham <don@gramps-project.org>
* src/plugins/ScratchPad.py: fix GdkAtom index problem with pygtk2.4
2005-05-13 Martin Hawlisch <Martin.Hawlisch@gmx.de>
* src/GenericFilter.py (HasEvent,HasFamilyEvent): Correct filter rules

View File

@ -680,7 +680,7 @@ class ScratchPadListView:
return
# Just select the first match.
wrapper_class = self._target_type_to_wrapper_class_map[possible_wrappers[0]]
wrapper_class = self._target_type_to_wrapper_class_map[str(possible_wrappers[0])]
o = wrapper_class(self._gramps_model,sel_data)