Skip to content

Commit 5f27fc2

Browse files
Revert change that limits detecting install directory
1 parent 69284de commit 5f27fc2

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

Lib/Launchpad/Entity/ManagedEntityBase.ahk

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -203,10 +203,7 @@ class ManagedEntityBase extends EntityBase {
203203

204204
detectedValues[this.configPrefix . "UsesShortcut"] := usesShortcut
205205
detectedValues[this.configPrefix . "RunType"] := usesShortcut ? "Shortcut" : "Command"
206-
207-
if (!this.entityData.HasValue(this.configPrefix . "InstallDir")) {
208-
detectedValues[this.configPrefix . "InstallDir"] := this.LocateInstallDir()
209-
}
206+
detectedValues[this.configPrefix . "InstallDir"] := this.LocateInstallDir() ; This needs to run to expand exes without a dir
210207

211208
if (this.ProcessType == "Exe") {
212209
SplitPath(this.Exe, processId)

0 commit comments

Comments
 (0)