diff --git a/de.bmotionstudio.gef.editor/src/de/bmotionstudio/gef/editor/property/CheckboxPropertyDescriptor.java b/de.bmotionstudio.gef.editor/src/de/bmotionstudio/gef/editor/property/CheckboxPropertyDescriptor.java index ffd872fbadbb3954f49a798710bd5c45c36f78fe..ba76140953e6836fae17247a15ecca721684c936 100644 --- a/de.bmotionstudio.gef.editor/src/de/bmotionstudio/gef/editor/property/CheckboxPropertyDescriptor.java +++ b/de.bmotionstudio.gef.editor/src/de/bmotionstudio/gef/editor/property/CheckboxPropertyDescriptor.java @@ -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 ""; } }); }