Auction House - fix bug
This commit is contained in:
+11
-5
@@ -4,10 +4,6 @@
|
|||||||
-- Backport to-do before release:
|
-- 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...
|
Tooltip - FIX center popup when closed the leatrix window, its still staying...
|
||||||
|
|
||||||
FlightTimers - fix report window editbox
|
FlightTimers - fix report window editbox
|
||||||
@@ -22,6 +18,10 @@ Enhance Minimap - Combine Addon Buttons - make this frame be movable
|
|||||||
-- What needs to be tested:
|
-- 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.
|
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 ?
|
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.
|
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
@@ -10193,7 +10193,7 @@
|
|||||||
-- Create checkboxes
|
-- Create checkboxes
|
||||||
CreateAuctionCB("AhBuyoutOnly", "BOTTOMLEFT", 200, 16, "Buyout Only")
|
CreateAuctionCB("AhBuyoutOnly", "BOTTOMLEFT", 200, 16, "Buyout Only")
|
||||||
CreateAuctionCB("AhGoldOnly", "BOTTOMLEFT", 320, 16, "Gold Only")
|
CreateAuctionCB("AhGoldOnly", "BOTTOMLEFT", 320, 16, "Gold Only")
|
||||||
CreateAuctionCB("AhTabConfirm", "BOTTOMLEFT", 440, 16, "Tab Confirm")
|
CreateAuctionCB("AhTabConfirm", "BOTTOMLEFT", 440, 16, "Tab To Confirm")
|
||||||
end
|
end
|
||||||
|
|
||||||
if LeaPlusLC.ElvUI then
|
if LeaPlusLC.ElvUI then
|
||||||
@@ -10331,7 +10331,7 @@
|
|||||||
StartPriceGold:SetFocus(true)
|
StartPriceGold:SetFocus(true)
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
if LeaPlusLC["AhTabConfirm"] == "On" then
|
if LeaPlusLC["AhTabConfirm"] == "On" and LeaPlusLC["AhBuyoutOnly"] == "On" and LeaPlusLC["AhGoldOnly"] == "On" then
|
||||||
AuctionsCreateAuctionButton:Click()
|
AuctionsCreateAuctionButton:Click()
|
||||||
BuyoutPriceGold:ClearFocus()
|
BuyoutPriceGold:ClearFocus()
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user