Skip to content

Commit

Permalink
Change terminology
Browse files Browse the repository at this point in the history
  • Loading branch information
bmcclure committed Mar 9, 2021
1 parent 1f57a47 commit 24d6321
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions Lib/Launchpad/Entity/EntityBase.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ class EntityBase {
originalObj := ""
children := Map()
parentEntity := ""
existsInDataSource := false

/**
* BASE SETTINGS
Expand Down Expand Up @@ -182,6 +183,7 @@ class EntityBase {
dsData := dataSource.ReadJson(this.GetDataSourceItemKey(), this.GetDataSourceItemPath())

if (dsData != "" && dsData.Has("data") && dsData["data"].Has("defaults")) {
this.existsInDataSource := true
defaults := this.MergeFromObject(defaults, dsData["data"]["defaults"], false)
defaults := this.MergeAdditionalDataSourceDefaults(defaults, dsData["data"])
}
Expand Down
2 changes: 1 addition & 1 deletion Lib/Launchpad/Window/ManageWindow.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@

focusOption := index == focusedItem ? " Focus" : ""

apiStatus := launcher.DataSourceItemKey ? "Merged" : "Not Found"
apiStatus := launcher.DataSourceItemKey ? "Linked" : "Not linked"

this.guiObj["ListView"].Add("Icon" . iconNum . focusOption, launcher.Key, launcher.Platform, launcherStatus, apiStatus)
iconNum++
Expand Down

0 comments on commit 24d6321

Please sign in to comment.