diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index efc7ed8e..9e0946df 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -14,7 +14,7 @@
-
+
diff --git a/properties b/properties
index cf8ee84d..4b00cccf 100644
--- a/properties
+++ b/properties
@@ -53,6 +53,7 @@
"ComparsionDiffMergeOn": true,
"ShowFullArraysDeclarations": false,
"ShowFullTabsNames": true,
+ "SmallScreen": false,
"BugReportsAgeLimit": 4,
"FastAccessPassesCount": 5,
"LastOpenedProjectsCount": 25
diff --git a/src/_VisualDVM/GlobalData/Settings/SettingName.java b/src/_VisualDVM/GlobalData/Settings/SettingName.java
index 6b6b592c..afb52bc9 100644
--- a/src/_VisualDVM/GlobalData/Settings/SettingName.java
+++ b/src/_VisualDVM/GlobalData/Settings/SettingName.java
@@ -3,7 +3,6 @@ public enum SettingName {
Undefined,
//--------------
LocalMakePathWindows,
- SmallScreen,
Precompilation,
SaveModifications, // сохранять исходную версию
GCOVLimit,
@@ -47,8 +46,6 @@ public enum SettingName {
return "Нижний порог отображения GCOV";
case Precompilation:
return "Предварительная компиляция";
- case SmallScreen:
- return "Маленький экран";
case LocalMakePathWindows:
return "Путь к make.exe";
case STATIC_SHADOW_ANALYSIS:
diff --git a/src/_VisualDVM/GlobalData/Settings/SettingsDBTable.java b/src/_VisualDVM/GlobalData/Settings/SettingsDBTable.java
index d8a16beb..4441755f 100644
--- a/src/_VisualDVM/GlobalData/Settings/SettingsDBTable.java
+++ b/src/_VisualDVM/GlobalData/Settings/SettingsDBTable.java
@@ -33,7 +33,6 @@ public class SettingsDBTable extends DBTable {
AddSetting(new DBSetting(SettingName.Kernels, Utils.getHalfKernels(), SettingType.IntField, ComponentType.Visualiser));
if (Utils_.isWindows())
AddSetting(new DBSetting(SettingName.LocalMakePathWindows, "C:\\MinGW\\msys\\1.0\\bin\\make.exe", SettingType.StringField, ComponentType.Visualiser));
- AddSetting(new DBSetting(SettingName.SmallScreen, 0, SettingType.SapforFlag, ComponentType.Visualiser));
//
//--
//
diff --git a/src/_VisualDVM/GlobalProperties.java b/src/_VisualDVM/GlobalProperties.java
index a36ef5bd..36e63848 100644
--- a/src/_VisualDVM/GlobalProperties.java
+++ b/src/_VisualDVM/GlobalProperties.java
@@ -127,6 +127,8 @@ public class GlobalProperties {
@Expose
public boolean ShowFullTabsNames=true;
@Expose
+ public boolean SmallScreen = false;
+ @Expose
public int BugReportsAgeLimit = 2;
@Expose
public int FastAccessPassesCount=10;
@@ -183,6 +185,8 @@ public class GlobalProperties {
//-----------------
public String getFieldDescription(String fieldName) {
switch (fieldName) {
+ case "SmallScreen":
+ return "Маленький экран";
case "ShowFullTabsNames":
return "Показывать полные имена вкладок";
case "ShowFullArraysDeclarations":
diff --git a/src/_VisualDVM/Passes/All/UpdateProperty.java b/src/_VisualDVM/Passes/All/UpdateProperty.java
index 5f235a6c..e0ff438e 100644
--- a/src/_VisualDVM/Passes/All/UpdateProperty.java
+++ b/src/_VisualDVM/Passes/All/UpdateProperty.java
@@ -116,6 +116,12 @@ public class UpdateProperty extends Pass