lcaron / opal

Main repository for the Opal Project (SWT new widgets library)
50 stars 32 forks source link

PropertyTable unsort() results in error #72

Closed morgsie closed 6 years ago

morgsie commented 6 years ago

Hi, I am trying to call the PropertyTable unsort() from within my code so that I can determine the order in which my properties are displayed in the PropertyTable.

My code looks like this: table = new PropertyTable(parent, SWT.NONE); table.showButtons(); table.viewAsCategories(); table.unsort();

I am getting the following error: !STACK 0 java.lang.NullPointerException at org.mihalis.opal.propertyTable.PTWidgetTree.refillData(Unknown Source) at org.mihalis.opal.propertyTable.PropertyTable.unsort(Unknown Source)

Apologies if I am calling this incorrectly, any help would be greatly appreciated. Thanks in advance!

lcaron commented 6 years ago

Issue fixed in Opal 1.0.8

morgsie commented 6 years ago

Thank you!