Fixed: CPComboBox don't close when clicking on the scroll

Previously CPComboBox don't close when clicking on the scroll, now it does

Fixed #1991
This commit is contained in:
Alexandre Wilhelm
2013-10-19 00:40:19 -07:00
parent bb6b5c1232
commit 2df13b7ffc
+1 -1
View File
@@ -887,7 +887,7 @@ var _CPPopUpListDataSourceKey = @"_CPPopUpListDataSourceKey",
if (mouseWindow != self && !CGRectContainsPoint(rect, point))
[[self delegate] close];
else if ([mouseWindow firstResponder] == [[self delegate] dataSource])
else
[self _trapNextMouseDown];
}