diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 67340f336..21ce54350 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -1,3 +1,6 @@ +2005-05-13 Don Allingham + * src/plugins/ScratchPad.py: fix GdkAtom index problem with pygtk2.4 + 2005-05-13 Martin Hawlisch * src/GenericFilter.py (HasEvent,HasFamilyEvent): Correct filter rules diff --git a/gramps2/src/plugins/ScratchPad.py b/gramps2/src/plugins/ScratchPad.py index d82d4fdb7..b84826169 100644 --- a/gramps2/src/plugins/ScratchPad.py +++ b/gramps2/src/plugins/ScratchPad.py @@ -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)