mirror of
https://github.com/overcuriousity/autopsy-flatpak.git
synced 2025-07-17 02:07:42 +00:00
3330 change to allow user setting of the memory to be equal to their max memory
This commit is contained in:
parent
826bce5442
commit
efadd3e50c
@ -458,7 +458,7 @@ final class AutopsyOptionsPanel extends javax.swing.JPanel {
|
||||
memFieldValidationLabel.setText(Bundle.AutopsyOptionsPanel_memFieldValidationLabel_underMinMemory_text(MIN_MEMORY_IN_GB));
|
||||
return false;
|
||||
}
|
||||
if (parsedInt >= getSystemMemoryInGB()) {
|
||||
if (parsedInt > getSystemMemoryInGB()) {
|
||||
memFieldValidationLabel.setText(Bundle.AutopsyOptionsPanel_memFieldValidationLabel_overMaxMemory_text(getSystemMemoryInGB()));
|
||||
return false;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user