From 3a83c0a963492ae6b3f49a59526688c4c2c2d267 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Wed, 22 Jul 2009 21:35:12 +0000 Subject: [PATCH] * This change appears to restore ctrl-click's ability to deselect a currently selected message. --- webcit/static/summaryview.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webcit/static/summaryview.js b/webcit/static/summaryview.js index dc329cc69..03336fe0b 100644 --- a/webcit/static/summaryview.js +++ b/webcit/static/summaryview.js @@ -274,7 +274,7 @@ function CtdlMessageListClick(evt) { } // If the ctrl key modifier is used, toggle one message } else if (event.button != 2 && (event.ctrlKey || event.altKey)) { - if (parent.ctdlMarked == true) { + if (parent.getAttribute("citadel:marked")) { unmarkRow(parent); } else { -- 2.30.2