mirror of
https://github.com/Bluewhale1337/ElvUIModernized.git
synced 2026-09-11 09:30:20 +00:00
Compare commits
3 Commits
a1295449d2
..
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 7acad19ae8 | |||
| 90222e012d | |||
| 175f0b6f0b |
@@ -111,7 +111,11 @@ local function LootClick(frame)
|
||||
if IsControlKeyDown() then
|
||||
DressUpItemLink(frame.link)
|
||||
elseif IsShiftKeyDown() then
|
||||
ChatEdit_InsertLink(frame.link)
|
||||
if ChatEdit_InsertLink then
|
||||
ChatEdit_InsertLink(frame.link)
|
||||
elseif ChatFrameEditBox and ChatFrameEditBox:IsVisible() then
|
||||
ChatFrameEditBox:Insert(frame.link)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@@ -221,10 +221,13 @@ local function LoadSkin()
|
||||
QuestRewardText:SetTextColor(unpack(textColor))
|
||||
|
||||
if GetQuestLogRequiredMoney() > 0 then
|
||||
if GetQuestLogRequiredMoney() > GetMoney() then
|
||||
QuestInfoRequiredMoneyText:SetTextColor(0.6, 0.6, 0.6)
|
||||
else
|
||||
QuestInfoRequiredMoneyText:SetTextColor(1, 0.80, 0.10)
|
||||
local moneyText = QuestInfoRequiredMoneyText or QuestLogRequiredMoneyText
|
||||
if moneyText then
|
||||
if GetQuestLogRequiredMoney() > GetMoney() then
|
||||
moneyText:SetTextColor(0.6, 0.6, 0.6)
|
||||
else
|
||||
moneyText:SetTextColor(1, 0.80, 0.10)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@@ -3,9 +3,11 @@
|
||||
# WoW ElvUI - Vanilla (1.12.1)
|
||||
## :exclamation: *Does NOT work with Retail - [Classic (1.13)](https://git.tukui.org/elvui/elvui-classic)*
|
||||
|
||||
# This repository is actively being fixed and maintained by Bluewhale.
|
||||
# This repository is actively being fixed and maintained.
|
||||
|
||||
## Changelog
|
||||
- **Fix:** Resolved `attempt to index global QuestInfoRequiredMoneyText` crash in Quest frame by adding Vanilla WoW fallback.
|
||||
- **Fix:** Resolved `attempt to call global ChatEdit_InsertLink` crash in LootRoll frame by using `ChatFrameEditBox:Insert` fallback.
|
||||
- **Fix:** Fixed global ID Lua 5.0 varargs crash across all Tooltip functions.
|
||||
- **Fix:** Fixed a Lua 5.0 syntax error in `AceConfigDialog-3.0.lua` where the `#` length operator was used instead of `table.getn`, preventing ElvUI_Config from loading.
|
||||
- **Fix:** Fixed nil ID formatting crash in Tooltip's SetHyperlink.
|
||||
|
||||
Reference in New Issue
Block a user