Menu

#13 RowOptionFlags bug

open
nobody
None
5
2010-06-20
2010-06-20
No

The comparisons in this class don't look right to mn. e.g.
get { return (options & 0x0010) == 1; }

Surely that should be
get { return (options & 0x0010) != 0; }

Discussion


Log in to post a comment.