Added missing FPS custom setting.

This commit is contained in:
armored-dragon 2024-11-20 18:29:26 -06:00
parent aa77ca8924
commit 096a1d5006
No known key found for this signature in database
GPG key ID: C7207ACC3382AD8B

View file

@ -157,7 +157,7 @@ Rectangle {
}
}
// Custom FPS
Item {
id: customFPSVaulesContainer
Layout.fillWidth: true;
@ -197,6 +197,18 @@ Rectangle {
}
}
SettingNumber {
settingText: "Unfocused";
minValue: 1;
maxValue: 9999;
suffixText: "fps";
settingValue: Performance.getCustomRefreshRate(2)
onValueChanged: {
Performance.setCustomRefreshRate(2, value);
}
}
SettingNumber {
settingText: "Minimized";
minValue: 1;