no message
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
package _VisualDVM.Passes.All;
|
||||
import Common.MainModule_;
|
||||
import Common.Passes.Pass;
|
||||
import Common.Visual.Windows.Dialog.SliderNumberForm;
|
||||
import Common.Visual.Windows.Dialog.VDirectoryChooser;
|
||||
@@ -32,6 +33,10 @@ public class UpdateProperty extends Pass<Object> {
|
||||
if (sliderNumberForm.ShowDialog(description, oldValue, 1, 12))
|
||||
newValue=sliderNumberForm.Result;
|
||||
break;
|
||||
case "FastAccessPassesCount":
|
||||
if (sliderNumberForm.ShowDialog(description, oldValue, 5, 15))
|
||||
newValue=sliderNumberForm.Result;
|
||||
break;
|
||||
case "Workspace":
|
||||
directoryChooser.setTitle(description);
|
||||
directoryChooser.SetCurrentDirectory(
|
||||
@@ -77,6 +82,9 @@ public class UpdateProperty extends Pass<Object> {
|
||||
Global.mainModule.getFile().form.ExpandMessages();
|
||||
}
|
||||
break;
|
||||
case "FastAccessPassesCount":
|
||||
MainModule_.instance.getUI().getFastAccessMenuBar().Refresh();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -65,13 +65,6 @@ public class UpdateSetting extends Pass<DBSetting> {
|
||||
if (f_.ShowDialog(target.Name.getDescription()))
|
||||
NewValue = String.valueOf(f_.Result);
|
||||
break;
|
||||
case FastAccessPassesCount:
|
||||
min = 5;
|
||||
max = 15;
|
||||
SliderNumberForm fff = new SliderNumberForm();
|
||||
if (fff.ShowDialog(target.Name.getDescription(), target.toInt32(), min, max))
|
||||
NewValue = String.valueOf(fff.Result);
|
||||
break;
|
||||
case Kernels:
|
||||
min = 1;
|
||||
max = Utils.getMaxKernels();
|
||||
@@ -102,9 +95,6 @@ public class UpdateSetting extends Pass<DBSetting> {
|
||||
if (Global.mainModule.HasFile())
|
||||
Global.mainModule.getFile().form.ShowGCOV();
|
||||
break;
|
||||
case FastAccessPassesCount:
|
||||
MainModule_.instance.getUI().getFastAccessMenuBar().Refresh();
|
||||
break;
|
||||
case ShowFullArraysDeclarations:
|
||||
if (Global.mainModule.HasProject())
|
||||
Global.mainModule.getProject().declaratedArrays.ShowUI();
|
||||
|
||||
Reference in New Issue
Block a user