Fix FPS setting restore logic

This commit is contained in:
Cameron Gutman 2018-08-05 15:09:36 -07:00
parent b76645e26b
commit 73dd5630df

View file

@ -162,7 +162,7 @@ ScrollView {
var el_fps = parseInt(fpsListModel.get(i).video_fps);
// Pick the highest value lesser or equal to the saved FPS
if (el_fps >= saved_fps) {
if (saved_fps >= el_fps) {
currentIndex = i
}
}