Skip to content

Commit

Permalink
[Mac] Allow setting the prefixes folder on Mac too (#3275)
Browse files Browse the repository at this point in the history
Allow setting the prefixes folder on Mac too
  • Loading branch information
arielj authored Nov 30, 2023
1 parent b6281f9 commit 7d7800e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ const WinePrefixesBasePath = () => {
const { t } = useTranslation()
const { platform } = useContext(ContextProvider)
const { isDefault } = useContext(SettingsContext)
const isLinux = platform === 'linux'
const isWindows = platform === 'win32'

if (!isDefault || !isLinux) {
if (!isDefault || isWindows) {
return <></>
}

Expand Down

0 comments on commit 7d7800e

Please sign in to comment.