1
Fork 0
mirror of https://github.com/redstrate/Astra.git synced 2025-04-20 11:47:46 +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") text: i18n("Encrypt Game Arguments")
description: i18n("Disable encryption if you want to inspect the raw arguments passed to the game.") description: i18n("Disable encryption if you want to inspect the raw arguments passed to the game.")
checked: LauncherCore.config.argumentsEncrypted checked: LauncherCore.config.encryptArguments
onCheckedChanged: LauncherCore.config.argumentsEncrypted = checked onCheckedChanged: LauncherCore.config.encryptArguments = checked
} }
FormCard.FormDelegateSeparator { FormCard.FormDelegateSeparator {

View file

@ -171,8 +171,8 @@ FormCard.FormCardPage {
FormCard.FormCheckDelegate { FormCard.FormCheckDelegate {
text: i18n("Enable Gamescope") 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.") 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 checked: page.profile.config.useGamescope
onCheckedChanged: page.profile.config.gamescopeEnabled = checked onCheckedChanged: page.profile.config.useGamescope = checked
} }
FormCard.FormDelegateSeparator {} FormCard.FormDelegateSeparator {}
@ -180,7 +180,7 @@ FormCard.FormCardPage {
FormCard.FormButtonDelegate { FormCard.FormButtonDelegate {
text: i18n("Configure Gamescope...") text: i18n("Configure Gamescope...")
icon.name: "configure" icon.name: "configure"
enabled: page.profile.config.gamescopeEnabled enabled: page.profile.config.useGamescope
Kirigami.PromptDialog { Kirigami.PromptDialog {
id: gamescopeSettingsDialog id: gamescopeSettingsDialog
title: i18n("Configure Gamescope") title: i18n("Configure Gamescope")
@ -227,8 +227,8 @@ FormCard.FormCardPage {
text: i18n("Enable Gamemode") text: i18n("Enable Gamemode")
description: i18n("A special game performance tool, that tunes your CPU scheduler among other things.") description: i18n("A special game performance tool, that tunes your CPU scheduler among other things.")
checked: page.profile.config.gamemodeEnabled checked: page.profile.config.useGamemode
onCheckedChanged: page.profile.config.gamemodeEnabled = checked onCheckedChanged: page.profile.config.useGamemode = checked
} }
} }
@ -300,7 +300,7 @@ FormCard.FormCardPage {
} }
FormCard.FormTextDelegate { FormCard.FormTextDelegate {
description: page.profile.config.dalamudVersionText description: page.profile.dalamudVersionText
} }
} }