Skip to content
Snippets Groups Projects
Commit 1786d3be authored by Lukas Ladenberger's avatar Lukas Ladenberger
Browse files

added label to checkbox property

parent a356f382
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,11 @@ public class CheckboxPropertyDescriptor extends PropertyDescriptor {
@Override
public String getText(Object element) {
return ""; //$NON-NLS-1$
if (element instanceof Boolean) {
Boolean b = (Boolean) element;
return b.toString();
}
return "";
}
});
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment