Skip to content

Commit f655a7a

Browse files
committedOct 9, 2012
Merge pull request minimalcomps#31 from makc/patch-1
Fix for the bug introduced in minimalcomps#15
2 parents e308f76 + ab5cf3e commit f655a7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/com/bit101/components/ComboBox.as

+1-1
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ package com.bit101.components
380380
*/
381381
public function set numVisibleItems(value:int):void
382382
{
383-
_numVisibleItems = Math.min(1, value);
383+
_numVisibleItems = Math.max(1, value);
384384
invalidate();
385385
}
386386
public function get numVisibleItems():int

0 commit comments

Comments
 (0)
Please sign in to comment.