no message
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
package _VisualDVM.Visual.Windows;
|
||||
import Common.Visual.CommonUI;
|
||||
import Common.Visual.UI_;
|
||||
import _VisualDVM.Current;
|
||||
import Common.Visual.TextField.StyledTextField;
|
||||
import _VisualDVM.ProjectData.SapforData.Functions.UI.Graph.FunctionsGraphForm;
|
||||
@@ -115,19 +115,19 @@ public class FunctionsForm implements FunctionsWindow {
|
||||
sDepth.setModel(new SpinnerNumberModel(1,
|
||||
0, 64, 1
|
||||
));
|
||||
CommonUI.MakeSpinnerRapid(sIterations, e -> {
|
||||
UI_.MakeSpinnerRapid(sIterations, e -> {
|
||||
Current.getProject().UpdatefgIterations((int) sIterations.getValue());
|
||||
FunctionsGraphUI.ffTimer.restart();
|
||||
});
|
||||
CommonUI.MakeSpinnerRapid(sResistance, e -> {
|
||||
UI_.MakeSpinnerRapid(sResistance, e -> {
|
||||
Current.getProject().UpdatefgResistance((int) sResistance.getValue());
|
||||
FunctionsGraphUI.ffTimer.restart();
|
||||
});
|
||||
CommonUI.MakeSpinnerRapid(sScreen, e -> {
|
||||
UI_.MakeSpinnerRapid(sScreen, e -> {
|
||||
Current.getProject().UpdatefgScreen((double) sScreen.getValue());
|
||||
FunctionsGraphUI.ffTimer.restart();
|
||||
});
|
||||
CommonUI.MakeSpinnerRapid(sDepth, e -> {
|
||||
UI_.MakeSpinnerRapid(sDepth, e -> {
|
||||
SPF_GetGraphFunctionPositions.depth = (int) sDepth.getValue();
|
||||
FunctionsGraphUI.ffTimer.restart();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user