no message

This commit is contained in:
2025-01-11 21:34:17 +03:00
parent fe752d2073
commit 8b2fb67422
10 changed files with 16 additions and 16 deletions

View File

@@ -116,6 +116,12 @@ public class UpdateProperty extends Pass<Object> {
if (Global.mainModule.HasFile())
Global.mainModule.getFile().form.RefreshTabsNames();
break;
case "SmallScreen":
if (Global.mainModule.HasProject())
Global.mainModule.getUI().getMainWindow().getProjectWindow().SwitchScreen(
Global.properties.SmallScreen);
Global.mainModule.getUI().getMainWindow().getCallbackWindow().SwitchScreen( Global.properties.SmallScreen);
break;
}
}
}

View File

@@ -87,12 +87,6 @@ public class UpdateSetting extends Pass<DBSetting> {
((SPF_GetArrayDistributionOnlyAnalysis)
Global.mainModule.getPass(PassCode.SPF_GetArrayDistributionOnlyAnalysis)).RefreshControls();
break;
case SmallScreen:
boolean small = target.toBoolean();
if (Global.mainModule.HasProject())
Global.mainModule.getUI().getMainWindow().getProjectWindow().SwitchScreen(small);
Global.mainModule.getUI().getMainWindow().getCallbackWindow().SwitchScreen(small);
break;
case Precompilation:
Global.mainModule.getSapfor().ResetAllAnalyses();
break;