no message

This commit is contained in:
2023-10-28 00:18:23 +03:00
parent 7177d02a5e
commit 9be7fa227f
5 changed files with 25 additions and 11 deletions

View File

@@ -4,7 +4,6 @@ import Common.Global;
import Common.UI.TextField.StyledTextField;
import Common.UI.UI;
import SapforTestingSystem.SapforTasksPackage.SapforTasksPackageInterface;
import SapforTestingSystem.SapforTasksPackage.SapforTasksPackageTree;
import Visual_DVM_2021.UI.Interface.FormWithSplitters;
import Visual_DVM_2021.UI.Interface.TestingWindow;
@@ -149,8 +148,10 @@ public class TestingForm implements FormWithSplitters, TestingWindow {
UI.Clear(sapforPackageTreePanel);
if (SapforTasksPackageInterface.isLoaded(Current.getSapforTasksPackage())){
sapforPackageTreePanel.add(
new JScrollPane(
new SapforTasksPackageTree(SapforTasksPackageInterface.getTree(Current.getSapforTasksPackage()))));
new JScrollPane(new SapforPackageFields(Current.getSapforTasksPackage()).getContent())
);
// new JScrollPane(new SapforTasksPackageTree(SapforTasksPackageInterface.getTree(Current.getSapforTasksPackage())))
;
}
}
@Override