Skip to content
Snippets Groups Projects
Commit ee31417b authored by Dongyue Mou's avatar Dongyue Mou
Browse files

a quick workaround for the af3-bug #1863 / eclipse-bug #383750

parent 9f6c0e98
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,7 @@ import org.eclipse.emf.ecore.EObject;
import org.eclipse.jface.databinding.swt.SWTObservables;
import org.eclipse.swt.SWT;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.List;
import org.eclipse.swt.widgets.Text;
import org.eclipse.ui.views.properties.tabbed.TabbedPropertySheetPage;
import org.fortiss.tooling.kernel.model.FortissToolingKernelPackage;
......@@ -60,6 +61,8 @@ public class NamedCommentedPropertySection extends PropertySectionBase {
public void createControls(Composite parent, TabbedPropertySheetPage aTabbedPropertySheetPage) {
super.createControls(parent, aTabbedPropertySheetPage);
List bugfix1 = new List(parent, SWT.NONE);
nameText = createFormText("Name");
commentText = createFormText("Comment");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment