Skip to content

Commit

Permalink
UI: Set Rarity as the source for created TomTom waypoints
Browse files Browse the repository at this point in the history
Instead of prepending Rarity to the waypoint name, it seems cleaner to use the TomTom API's "from" field. Maybe that's a recent addition? Either way, it de-clutters the waypoint title a little bit and fixes the  "From: ?" part. No big deal.
  • Loading branch information
rdw-software committed Aug 3, 2023
1 parent b9db5c0 commit 311d083
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/GUI/MainWindow.lua
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ local function onClickItem(cell, item)
coord.m,
coord.x / 100.0,
coord.y / 100.0,
{ title = "Rarity" .. ": " .. item.name .. extraName }
{ title = item.name .. extraName, from = "Rarity" }
)
added = added + 1
end
Expand Down

0 comments on commit 311d083

Please sign in to comment.