Добавил анимацию распаковки пакета сапфор после его скачивания.

This commit is contained in:
2023-11-01 19:06:07 +03:00
parent b4635ae8a0
commit 7972fe5dc2
9 changed files with 59 additions and 18 deletions

View File

@@ -245,7 +245,7 @@ public class UI {
});
menuBars.put(VariantsSet.class, new VariantsMenuBar());
menuBars.put(SubsribersDBTable.class, new SubscribersMenuBar());
menuBars.put(SapforProfilesDBTable.class, new DataMenuBar("профили", PassCode_2021.SaveProfile, PassCode_2021.EditProfile, PassCode_2021.ApplyProfile,PassCode_2021.DeleteProfile));
menuBars.put(SapforProfilesDBTable.class, new DataMenuBar("профили", PassCode_2021.SaveProfile, PassCode_2021.EditProfile, PassCode_2021.ApplyProfile, PassCode_2021.DeleteProfile));
menuBars.put(ServerSapforsDBTable.class, new ServerSapforsBar());
menuBars.put(SapforTasksDBTable.class, new SapforTasksMenuBar());
//---->>
@@ -437,7 +437,7 @@ public class UI {
versionsWindow = new VersionsForm(Current.getRoot());
}
public static DebugWindow getDebugWindow() {
if (debugWindow==null)
if (debugWindow == null)
debugWindow = new DebugForm();
return debugWindow;
}