From 12fe3248df7001e58e922bc72e4652a18910d2a5 Mon Sep 17 00:00:00 2001 From: Kai Giokas Date: Sat, 3 Oct 2020 23:18:02 -0600 Subject: [PATCH] Added 75, 144 and 165hz refresh rates These are pretty common refresh rates for most monitors, 75 being old and 165 being somewhat new, but used reasonably often in higher-end monitors. --- src/js/profile/application_settings.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/profile/application_settings.js b/src/js/profile/application_settings.js index ace30eff..9568766f 100644 --- a/src/js/profile/application_settings.js +++ b/src/js/profile/application_settings.js @@ -123,7 +123,7 @@ export const autosaveIntervals = [ }, ]; -const refreshRateOptions = ["30", "60", "120", "180", "240"]; +const refreshRateOptions = ["30", "60", "75", "120", "144", "165", "180", "240"]; if (G_IS_DEV) { refreshRateOptions.unshift("10");