Fix: priority functionality not working properly (#232)

This commit is contained in:
Luis Uguina
2020-05-28 23:05:52 +10:00
committed by GitHub
parent 737377098f
commit cdf552f708
6 changed files with 109 additions and 39 deletions

View File

@@ -218,4 +218,13 @@ public class Windows extends OS {
}
return false;
}
@Override public boolean getSupportHighPriority() {
return true;
}
@Override public boolean checkNiceAvailability() {
// In windows, nice is not required and therefore we return always true to show the slider in the Settings GUI
return true;
}
}