Fixed SELECTION_CONDITIONS::lessThanFunc().
This commit is contained in:
parent
16daa04518
commit
f202e5318c
|
@ -122,7 +122,7 @@ bool SELECTION_CONDITIONS::moreThanFunc( const SELECTION& aSelection, int aNumbe
|
|||
|
||||
bool SELECTION_CONDITIONS::lessThanFunc( const SELECTION& aSelection, int aNumber )
|
||||
{
|
||||
return aSelection.Size() > aNumber;
|
||||
return aSelection.Size() < aNumber;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue