File tree 4 files changed +4
-4
lines changed
screens/Settings/components
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -542,7 +542,7 @@ export async function isUmuSupported(
542
542
checkUmuInstalled = true
543
543
) : Promise < boolean > {
544
544
const umuEnabled =
545
- GlobalConfig . get ( ) . getSettings ( ) . experimentalFeatures ?. umuSupport !== false
545
+ GlobalConfig . get ( ) . getSettings ( ) . experimentalFeatures ?. umuSupport === true
546
546
const wineVersionSupported = wineType === 'proton'
547
547
const umuInstalled = checkUmuInstalled ? existsSync ( await getUmuPath ( ) ) : true
548
548
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ const ExperimentalFeatures = () => {
24
24
enableNewDesign : false ,
25
25
enableHelp : false ,
26
26
automaticWinetricksFixes : true ,
27
- umuSupport : true
27
+ umuSupport : false
28
28
}
29
29
)
30
30
const { handleExperimentalFeatures } = useContext ( ContextProvider )
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ const initialContext: ContextType = {
98
98
enableNewDesign : false ,
99
99
enableHelp : false ,
100
100
automaticWinetricksFixes : true ,
101
- umuSupport : true
101
+ umuSupport : false
102
102
} ,
103
103
handleExperimentalFeatures : ( ) => null ,
104
104
disableDialogBackdropClose : false ,
Original file line number Diff line number Diff line change @@ -211,7 +211,7 @@ class GlobalState extends PureComponent<Props> {
211
211
enableNewDesign : false ,
212
212
enableHelp : false ,
213
213
automaticWinetricksFixes : true ,
214
- umuSupport : true ,
214
+ umuSupport : false ,
215
215
...( globalSettings ?. experimentalFeatures || { } )
216
216
} ,
217
217
disableDialogBackdropClose : configStore . get (
You can’t perform that action at this time.
0 commit comments