Explorar o código

Merge pull request #966 from Yakindu/issue_771_propertiesView

Made the "Properties" view visible by default - #771
Andreas Mülder %!s(int64=9) %!d(string=hai) anos
pai
achega
cbad3520e5

+ 2 - 2
plugins/org.yakindu.sct.ui/src/org/yakindu/sct/ui/perspectives/ModelingPerspectiveFactory.java

@@ -41,9 +41,9 @@ public class ModelingPerspectiveFactory implements IPerspectiveFactory {
 
 		IFolderLayout bottom = layout.createFolder("bottom",
 				IPageLayout.BOTTOM, 0.65f, editorArea);
-		bottom.addView(IPageLayout.ID_TASK_LIST);
-		bottom.addView(IPageLayout.ID_PROBLEM_VIEW);
 		bottom.addView(IPageLayout.ID_PROP_SHEET);
+		bottom.addView(IPageLayout.ID_PROBLEM_VIEW);
+		bottom.addView(IPageLayout.ID_TASK_LIST);
 	}
 
 	private void defineActions(IPageLayout layout) {