InputEvent mask mixup on JTable
Hello,
I am implementing a context filter on a JTable, which is triggered with some mouse combinations. I used CTRL_DOWN_MASK and SHIFT_DOWN_MASK + mouse button 1, but now I have to allow multiple select, and so I need some new keys.
I tried ALT_DOWN_MASK, but for some reasons that did not work. I looked up the returned modifier value (getModifiersEx()) when pressing mouse button 1 while holding down the alt key, and it matches BUTTON2_DOWN_MASK !! Is this a bug? If not, how can I get the ALT_DOWN_MASK to work? ... or, should I just use BUTTON2_DOWN_MASK and hope nothing unexpected will happen?

