From 15649b4d1a2fd7affd5d399fa102e48b116f7a89 Mon Sep 17 00:00:00 2001 From: Michiel Nauta Date: Wed, 21 Sep 2011 19:14:30 +0000 Subject: [PATCH] 4937: Clipboard - unable to added second source svn: r18192 --- src/ScratchPad.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ScratchPad.py b/src/ScratchPad.py index 35b5af627..ca816fbef 100644 --- a/src/ScratchPad.py +++ b/src/ScratchPad.py @@ -152,7 +152,9 @@ def model_contains(model, data): # FIXME: too restrictive, birth and death won't both copy same = ((row[0] == data[0]) and (row[1]._title == data[1]._title) and - (row[1]._handle == data[1]._handle)) + (row[1]._handle == data[1]._handle) and + (row[3] == data[3]) and + (row[4] == data[4])) if same: return True return False