From 7925569931495c5081bb9d66f8598a6b6b8945b4 Mon Sep 17 00:00:00 2001 From: Sattva Date: Sun, 24 Sep 2023 04:30:04 +0300 Subject: [PATCH] AhExtras - tweaks,fix. Save more clicks for user. --- Changelog and Notes.txt | 15 +++++++-------- Leatrix_Plus.lua | 13 +++++++++---- 2 files changed, 16 insertions(+), 12 deletions(-) diff --git a/Changelog and Notes.txt b/Changelog and Notes.txt index e39a00c..afda2dc 100644 --- a/Changelog and Notes.txt +++ b/Changelog and Notes.txt @@ -4,23 +4,16 @@ -- Backport to-do before release: -------------------------------------------------------------------------------- - -Main Panel - Need to fix transparency of settings in Settings main window. - -AutoQuest - May be backport retail quest accept. - RecentChatWindow - Need to rename .xml file and the backported template name. MinimapButton - Either add functions to alt-click and other on button or remove descriptions in GUI. 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. -General - Check all Preset profiles to make sure user doesn't have option being enabled, that is not working. +General - Check all Preset profiles (ctrl + shift click on options gear) to make sure user doesn't have option being enabled, that is not working. EnhanceMinimap - "Example Input" needs Locales! -InviteFromWhispers - Need to fix visual bag in config panel. - EnhanceMinimap - Hide Tracking needs updated description! About right clicking minimap. CombineAddonButtons - Make frame movable? @@ -41,6 +34,10 @@ Minimap - Move the zone text overlapping the mail icon ViewPort - fixes, left,right, transperency or disable +DisableLootWarning - Make sure it's working + +FlightTimers - disable report by default + -------------------------------------------------------------------------------- -- What needs to be tested: @@ -122,6 +119,8 @@ AutoSellJunk - The editbox must be scrollable. HideChatButtons - Add Configuration to enable certain chat buttons. +ManageBuff - Add Debuffs mover. Currently only moving Buffs, but not Debuffs. + -------------------------------------------------------------------------------- diff --git a/Leatrix_Plus.lua b/Leatrix_Plus.lua index 9d9ad8c..10a5eba 100644 --- a/Leatrix_Plus.lua +++ b/Leatrix_Plus.lua @@ -9780,13 +9780,13 @@ if LeaPlusLC["AhBuyoutOnly"] == "Off" and LeaPlusLC["AhGoldOnly"] == "On" then StartPriceGold:SetFocus(true) end - end - end) - - BuyoutPriceGold:HookScript("OnTabPressed", function() + else if LeaPlusLC["AhTabConfirm"] == "On" then AuctionsCreateAuctionButton:Click() + BuyoutPriceGold:ClearFocus() end + + end end) local function AddItemToAuction(button, bag, slot) @@ -9798,6 +9798,11 @@ if GetAuctionSellItemInfo() == name then PickupContainerItem(bag, slot) end + if LeaPlusLC["AhBuyoutOnly"] == "Off" then + StartPriceGold:SetFocus(true) + else + BuyoutPriceGold:SetFocus(true) + end else button:SetAttribute("type", "macro") button:SetAttribute("macrotext", "/click AuctionsItemButton")