I’m trying to make my plugin not to react on keyboard pressings.
I’m easily setting setWantsKeyboardFocus(false) for every component.
This works very good.
But not on Combobox, and i think i found the reason.
In lookAndFeelChanged() function of ComboBox, if the label is non-editable, this will result in a call to setWantsKeyboardFocus(true), which makes no sense i think.
