Currently we have these two states:
/** Indicates this text object can contain multiple lines of text. */ IA2_STATE_MULTI_LINE = 0x200, /** Indicates that this text object can contain only a single line of text. */ IA2_STATE_SINGLE_LINE = 0x2000, Is there a reason why we need both constants? I'd rather default to one state (say, single_line) and make the other one explicit, similar to checked/unchecked or focused/unfocused. Having both seems like a waste of a precious bit in the states enum. Any body opposes eliminating one of these two constants? --Andres.
_______________________________________________ Accessibility-ia2 mailing list [email protected] https://lists.linux-foundation.org/mailman/listinfo/accessibility-ia2
