Skip to content

Commit

Permalink
Merge pull request #66 from PoE-TradeMacro/development
Browse files Browse the repository at this point in the history
fixed tooltip display
  • Loading branch information
Eruyome authored Oct 25, 2016
2 parents 8a37d90 + ad569b2 commit bdaf43e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Binary file removed icon.ico
Binary file not shown.
10 changes: 9 additions & 1 deletion trade_data/TradeMacro.ahk
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,15 @@ TradeMacroMainFunction(openSearchInBrowser = false, isAdvancedPriceCheck = false
ShowToolTip(ParsedData)
}
else {
Item.UsedInSearch.SearchType := isItemAgeRequest ? "Item Age Search" : "Default"
If (isItemAgeRequest) {
Item.UsedInSearch.SearchType := "Item Age Search"
}
Else If (isAdvancedPriceCheckRedirect) {
Item.UsedInSearch.SearchType := "Advanced"
}
Else {
Item.UsedInSearch.SearchType := "Default"
}
ParsedData := FunctionParseHtml(Html, Payload, iLvl, Enchantment, isItemAgeRequest)

SetClipboardContents(ParsedData)
Expand Down

0 comments on commit bdaf43e

Please sign in to comment.