Bring back this, either works or doesn't on linux and windows. I will have to test

This commit is contained in:
2026-01-07 17:45:07 -07:00
parent 36ed3e0095
commit 76797c6120
2 changed files with 31 additions and 27 deletions

View File

@@ -91,9 +91,12 @@ export default function Installs () {
if (normalConfig?.settings.useLegacyInteractButtons) return
const verInfo = getVersionInfo(entry)
if (verInfo == undefined) return
const gameInfo = getGameInfo(verInfo.game)
if (gameInfo == undefined) return
invoke('launch_game', {
name: verInfo.id,
executable: verInfo.executable
executable: verInfo.executable,
displayName: `${gameInfo.name} v${verInfo.versionName}`
})
}}
onMouseEnter={() => setHoveredIds(prev => [...prev, entry])}