Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[UX] Set the auto fixes feature ON by default #3449

Merged
merged 2 commits into from
Jan 21, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Set the auto fixes feature on by default
  • Loading branch information
arielj committed Jan 17, 2024
commit abf3f5412bc5d1981a18a034a42c2b7b0c8e4473
2 changes: 1 addition & 1 deletion src/backend/launcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ async function prepareWineLaunch(
}
if (
GlobalConfig.get().getSettings().experimentalFeatures
?.automaticWinetricksFixes
?.automaticWinetricksFixes !== false
) {
await installFixes(appName, runner)
}
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/state/ContextProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const initialContext: ContextType = {
experimentalFeatures: {
enableNewDesign: false,
enableHelp: false,
automaticWinetricksFixes: false
automaticWinetricksFixes: true
},
handleExperimentalFeatures: () => null,
disableDialogBackdropClose: false,
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/state/GlobalState.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ class GlobalState extends PureComponent<Props> {
experimentalFeatures: globalSettings?.experimentalFeatures || {
enableNewDesign: false,
enableHelp: false,
automaticWinetricksFixes: false
automaticWinetricksFixes: true
},
disableDialogBackdropClose: configStore.get(
'disableDialogBackdropClose',
Expand Down