If resolution ratio is below 25, set to 100

This commit is contained in:
Duy Tran Khanh 2021-01-28 13:42:30 +07:00 committed by GitHub
parent f369d90fba
commit f5b81b5a49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,7 +40,7 @@ public class LauncherPreferenceFragment extends PreferenceFragmentCompat impleme
// #724 bug fix
if (seek5.getValue() < 25) {
seek5.setValue(25);
seek5.setValue(100);
}
EditTextPreference editJVMArgs = findPreference("javaArgs");