1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-20 19:57:45 +00:00

Fix various settings that broke during the refactor

This commit is contained in:
Joshua Goins 2025-03-17 18:51:24 -04:00
parent a6c4f53862
commit 7104de9ce9
2 changed files with 8 additions and 8 deletions

View file

@ -59,8 +59,8 @@ FormCard.FormCardPage {
text: i18n("Encrypt Game Arguments")
description: i18n("Disable encryption if you want to inspect the raw arguments passed to the game.")
checked: LauncherCore.config.argumentsEncrypted
onCheckedChanged: LauncherCore.config.argumentsEncrypted = checked
checked: LauncherCore.config.encryptArguments
onCheckedChanged: LauncherCore.config.encryptArguments = checked
}
FormCard.FormDelegateSeparator {

View file

@ -171,8 +171,8 @@ FormCard.FormCardPage {
FormCard.FormCheckDelegate {
text: i18n("Enable Gamescope")
description: i18n("A micro-compositor that uses Wayland to create a nested session.\nIf you use fullscreen mode, it may improve input handling.")
checked: page.profile.config.gamescopeEnabled
onCheckedChanged: page.profile.config.gamescopeEnabled = checked
checked: page.profile.config.useGamescope
onCheckedChanged: page.profile.config.useGamescope = checked
}
FormCard.FormDelegateSeparator {}
@ -180,7 +180,7 @@ FormCard.FormCardPage {
FormCard.FormButtonDelegate {
text: i18n("Configure Gamescope...")
icon.name: "configure"
enabled: page.profile.config.gamescopeEnabled
enabled: page.profile.config.useGamescope
Kirigami.PromptDialog {
id: gamescopeSettingsDialog
title: i18n("Configure Gamescope")
@ -227,8 +227,8 @@ FormCard.FormCardPage {
text: i18n("Enable Gamemode")
description: i18n("A special game performance tool, that tunes your CPU scheduler among other things.")
checked: page.profile.config.gamemodeEnabled
onCheckedChanged: page.profile.config.gamemodeEnabled = checked
checked: page.profile.config.useGamemode
onCheckedChanged: page.profile.config.useGamemode = checked
}
}
@ -300,7 +300,7 @@ FormCard.FormCardPage {
}
FormCard.FormTextDelegate {
description: page.profile.config.dalamudVersionText
description: page.profile.dalamudVersionText
}
}