From 30866f07f719bbe3e5326b1fdebdad3223304b6e Mon Sep 17 00:00:00 2001 From: Sattva Date: Sat, 30 Dec 2023 22:30:39 +0300 Subject: [PATCH] Auction House - fix bug --- Changelog and Notes.txt | 16 +++++++++++----- Leatrix_Plus.lua | 4 ++-- 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/Changelog and Notes.txt b/Changelog and Notes.txt index 1152e39..2bcd6e3 100644 --- a/Changelog and Notes.txt +++ b/Changelog and Notes.txt @@ -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. \ No newline at end of file +AutoGossip - Add https://wowhead.com/wotlk/search?q=Surristrasz to ignore the dialog auto-confirm. + +-------------------------------------------------------------------------------- +---- Things to include in presentation +-------------------------------------------------------------------------------- + +- Tab to confirm auction \ No newline at end of file diff --git a/Leatrix_Plus.lua b/Leatrix_Plus.lua index ff4d208..3683862 100644 --- a/Leatrix_Plus.lua +++ b/Leatrix_Plus.lua @@ -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