Merge pull request #2004 from Dogild/comboBox-trapMouse

Fixed: CPComboBox don't close when clicking on the scroll
This commit is contained in:
Antoine Mercadal
2013-10-21 14:25:20 -07:00
+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];
}