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

@@ -4,9 +4,8 @@ import _VisualDVM.GlobalData.Settings.SettingName;
import _VisualDVM.Visual.Menus.SettingsSubmenu;
public class CompactnessSettingsMenu extends SettingsSubmenu {
public CompactnessSettingsMenu() {
super("Компактность отображения", null,
SettingName.SmallScreen
);
super("Компактность отображения", null);
add(Global.properties.getMenuItem("SmallScreen"));
add(Global.properties.getMenuItem("ShowFullArraysDeclarations"));
add(Global.properties.getMenuItem("ShowFullTabsNames"));
add(Global.properties.getMenuItem("LastOpenedProjectsCount"));

View File

@@ -152,7 +152,7 @@ public class CallbackForm implements FormWithSplitters, CallbackWindow {
BugReportCommentAddition.setWrapStyleWord(true);
//----------------------------------------------
//тут развилка на то вкладки или поля.
SwitchScreen((Global.mainModule.getDb()).settings.get(SettingName.SmallScreen).toBoolean());
SwitchScreen(Global.properties.SmallScreen);
//-
Global.componentsServer.db.bugReports.mountUI(bugReportsPanel);
Global.componentsServer.db.subscribers.mountUI(subscribersPanel);

View File

@@ -73,7 +73,7 @@ public class ProjectForm implements FormWithSplitters, ProjectWindow {
Global.mainModule.getUI().getDebugWindow().ShowAll();
ShowAllAnalyses();
ShowProjectView();
SwitchScreen((Global.mainModule.getDb()).settings.get(SettingName.SmallScreen).toBoolean());
SwitchScreen(Global.properties.SmallScreen);
RefreshTabsNames();
//--
if (Global.properties.collapseProjectTrees)