Isomorphic,
I'm trying to override the showPicker method for TextItem and it doesn't work. It just shows the default square box. Is this a bug.
Thanks.
I'm trying to override the showPicker method for TextItem and it doesn't work. It just shows the default square box. Is this a bug.
Code:
TextItem origin = new TextItem() {
@Override
public void showPicker() {
SC.say("Hi");
}
};
Comment