no message

This commit is contained in:
2025-01-11 22:48:00 +03:00
parent 8b2fb67422
commit 7a06c2ce2b
10 changed files with 26 additions and 19 deletions

View File

@@ -35,6 +35,12 @@ public class UpdateProperty extends Pass<Object> {
return true;
}
switch (name){
case "LocalMakePathWindows":
fileChooser.setTitle(description);
File file = fileChooser.ShowDialog();
if (file != null)
newValue = file.getAbsolutePath();
break;
case "BugReportsAgeLimit":
if (sliderNumberForm.ShowDialog(description, oldValue, 1, 12))
newValue=sliderNumberForm.Result;