From f2fd4df9563fa09dbf7bf65b6dd2072b4b4190cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rgen=20Lien=20Sell=C3=A6g?= Date: Thu, 15 Jan 2026 04:10:54 +0100 Subject: [PATCH] widen auctioning price inputs --- TradeSkillMaster/TradeSkillMaster.toc | 2 +- TradeSkillMaster_AuctionDB/TradeSkillMaster_AuctionDB.toc | 4 ++-- TradeSkillMaster_Auctioning/modules/Options.lua | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/TradeSkillMaster/TradeSkillMaster.toc b/TradeSkillMaster/TradeSkillMaster.toc index 93132f7..f9e7338 100644 --- a/TradeSkillMaster/TradeSkillMaster.toc +++ b/TradeSkillMaster/TradeSkillMaster.toc @@ -2,7 +2,7 @@ ## Title: |cff00fe00TradeSkillMaster: Revived|r ## Notes: Core addon for the TradeSkillMaster suite, revived for Wrath of the Lich King. Does nothing without modules installed. ## Author: Sapu94, Bart39, Gnomezilla [Warmane-Icecrown(A)], BlueAo [Warmane], andrew6180, Yoshiyuka, DimaSheiko, and other contributors... -## Version: 2.3.39 +## Version: 2.3.40 ## SavedVariables: TradeSkillMasterAppDB, AscensionTSMDB ## OptionalDeps: AccurateTime, Ace3, LibDataBroker-1.1, LibDBIcon-1.0, LibExtraTip, TipHelper, LibParse, LibCompress, LibGraph-2.0, SharedMedia, TheUndermineJournal, TheUndermineJournalGE ## X-Embeds: AccurateTime, Ace3, LibDataBroker-1.1, LibDBIcon-1.0, LibExtraTip, TipHelper, LibParse, LibCompress, LibGraph-2.0 diff --git a/TradeSkillMaster_AuctionDB/TradeSkillMaster_AuctionDB.toc b/TradeSkillMaster_AuctionDB/TradeSkillMaster_AuctionDB.toc index ef5f55f..9b910cf 100644 --- a/TradeSkillMaster_AuctionDB/TradeSkillMaster_AuctionDB.toc +++ b/TradeSkillMaster_AuctionDB/TradeSkillMaster_AuctionDB.toc @@ -2,10 +2,10 @@ ## Title: |cff00ff00TradeSkillMaster_AuctionDB|r ## Notes: Stores auction house data and calculates market prices. ## Author: Sapu94, Bart39 -## Version: 2.3.39 +## Version: 2.3.40 ## SavedVariables: AscensionTSM_AuctionDB ## Dependency: TradeSkillMaster -## X-Curse-Packaged-Version: 2.3.39 +## X-Curse-Packaged-Version: 2.3.40 ## X-Curse-Project-Name: TradeSkillMaster_AuctionDB ## X-Curse-Project-ID: tradeskillmaster_auctiondb ## X-Curse-Repository-ID: wow/tradeskillmaster_auctiondb/mainline diff --git a/TradeSkillMaster_Auctioning/modules/Options.lua b/TradeSkillMaster_Auctioning/modules/Options.lua index 1eb71a5..f1afab3 100644 --- a/TradeSkillMaster_Auctioning/modules/Options.lua +++ b/TradeSkillMaster_Auctioning/modules/Options.lua @@ -548,7 +548,7 @@ function Options:DrawOperationPost(container, operationName) type = "EditBox", label = L["Minimum Price"], settingInfo = { operation, "minPrice" }, - relativeWidth = 0.49, + relativeWidth = 1, acceptCustom = true, disabled = operation.relationships.minPrice, tooltip = L["The lowest price you want an item to be posted for. Auctioning will not undercut auctions below this price."], @@ -566,7 +566,7 @@ function Options:DrawOperationPost(container, operationName) type = "EditBox", label = L["Maximum Price"], settingInfo = { operation, "maxPrice" }, - relativeWidth = 0.49, + relativeWidth = 1, acceptCustom = true, disabled = operation.relationships.maxPrice, tooltip = L["The maximum price you want an item to be posted for. Auctioning will not undercut auctions above this price."], @@ -584,7 +584,7 @@ function Options:DrawOperationPost(container, operationName) type = "EditBox", label = L["Normal Price"], settingInfo = { operation, "normalPrice" }, - relativeWidth = 0.49, + relativeWidth = 1, acceptCustom = true, disabled = operation.relationships.normalPrice, tooltip = L["Price to post at if there are none of an item currently on the AH."],