From eff6462407796d362f4b4d3b6f5be048a3321c34 Mon Sep 17 00:00:00 2001 From: tristen Date: Sun, 13 Dec 2015 23:34:50 -0500 Subject: [PATCH] Account for mousedown selection of value --- src/list.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/list.js b/src/list.js index 8fb9047..627e2e6 100644 --- a/src/list.js +++ b/src/list.js @@ -64,7 +64,7 @@ List.prototype.drawItem = function(item, active) { }; List.prototype.handleMouseDown = function(item) { - this.component.value(item); + this.component.value(item.original); this.clear(); this.draw(); };