Auction House - fix bug

This commit is contained in:
Sattva
2023-12-30 22:30:39 +03:00
parent c8b09b259e
commit 30866f07f7
2 changed files with 13 additions and 7 deletions
+11 -5
View File
@@ -4,10 +4,6 @@
-- Backport to-do before release:
--------------------------------------------------------------------------------
MinimapEnhance - Replace non-standard buttons option! Aka those that don't use LibDBIcon, or may be just set size of them ?
AhExtras - Need to make new description for alt click, tab confirm. And do locales.
Tooltip - FIX center popup when closed the leatrix window, its still staying...
FlightTimers - fix report window editbox
@@ -22,6 +18,10 @@ Enhance Minimap - Combine Addon Buttons - make this frame be movable
-- What needs to be tested:
--------------------------------------------------------------------------------
MinimapEnhance - Replace non-standard buttons option! Aka those that don't use LibDBIcon, or may be just set size of them ?
GUI - ruRU - rename names of functions, they are too long to read
ElvUI - Need to see what disabled for when ElvUI is loaded. May be something is not made in 3.3.5 ElvUI backport, but still disabled.
Auto-Ress in BG - With option "Exclude Alterac" will it not auto-res in Alterac BG ?
@@ -174,4 +174,10 @@ Show best gold value for quest reward.
Open all bag user config option at merchant.
AutoGossip - Add https://wowhead.com/wotlk/search?q=Surristrasz to ignore the dialog auto-confirm.
AutoGossip - Add https://wowhead.com/wotlk/search?q=Surristrasz to ignore the dialog auto-confirm.
--------------------------------------------------------------------------------
---- Things to include in presentation
--------------------------------------------------------------------------------
- Tab to confirm auction
+2 -2
View File
@@ -10193,7 +10193,7 @@
-- Create checkboxes
CreateAuctionCB("AhBuyoutOnly", "BOTTOMLEFT", 200, 16, "Buyout Only")
CreateAuctionCB("AhGoldOnly", "BOTTOMLEFT", 320, 16, "Gold Only")
CreateAuctionCB("AhTabConfirm", "BOTTOMLEFT", 440, 16, "Tab Confirm")
CreateAuctionCB("AhTabConfirm", "BOTTOMLEFT", 440, 16, "Tab To Confirm")
end
if LeaPlusLC.ElvUI then
@@ -10331,7 +10331,7 @@
StartPriceGold:SetFocus(true)
end
else
if LeaPlusLC["AhTabConfirm"] == "On" then
if LeaPlusLC["AhTabConfirm"] == "On" and LeaPlusLC["AhBuyoutOnly"] == "On" and LeaPlusLC["AhGoldOnly"] == "On" then
AuctionsCreateAuctionButton:Click()
BuyoutPriceGold:ClearFocus()
end