RecentChat, MinimapButtons

Make RecentChat to show more lines.
Make MinimapButtons frame moving frame easier to pin-point.
This commit is contained in:
Sattva
2024-03-04 02:08:31 +03:00
parent ca47795c1d
commit 990cbea6b0
2 changed files with 19 additions and 5 deletions
+15 -1
View File
@@ -16,6 +16,18 @@ Minimap - MoveCombinedFrame - after reload became too small and un-clickable...
Minimap - Hide POI ARROWS Tweak.
Manage Buffs - Consolidated Buffs Test, and fix if needed. Will it be moved as intended if user has Consolidated Buffs?
Manage Debuffs - Fix it
MinimapButtons - Add combat login workaround - currently after combat, the icons are not updated.
HideErrors - You are in shapeshift form
Chat - Alt Click to Invite.
Social - Add Block Guild Invites
--------------------------------------------------------------------------------
-- What needs to be tested:
@@ -38,6 +50,8 @@ ShowFlightPaths - Will StopLandingEvent work correctly on summon, BG/arena ac
-- Stuff to-do:
--------------------------------------------------------------------------------
MinimapEnhance - Option to hide calendar. How to make it so user still can open it? Add to tracking dropdown?
MinimapEnhance - Replace non-standard buttons option! Aka those that don't use LibDBIcon, or may be just set size of them ?
MinimapButton - Add functions to alt-click and other clicks on button
@@ -67,7 +81,7 @@ RecentChatWindow - Need to add mouse scrolling.
RecentChatWindow - Need to fix channel colors.
Social - Add Block Guild Invites
AutoGossip - Add user defined NPCID to automate gossipX (any option)
+4 -4
View File
@@ -4292,7 +4292,7 @@
-- Add slider controls
LeaPlusLC:MakeTx(SideMinimap, "Scale", 356, -72)
LeaPlusLC:MakeSL(SideMinimap, "MinimapScale", "Drag to set the minimap scale.|n|nAdjusting this slider makes the minimap and all the elements bigger.", 1, 4, 0.1, 356, -92, "%.2f")
LeaPlusLC:MakeSL(SideMinimap, "MinimapScale", "Drag to set the minimap scale.|n|nAdjusting this slider makes the minimap and all the elements bigger.", 1, 4, 0.01, 356, -92, "%.2f")
-- set x position for now to 10000, FIXME
LeaPlusLC:MakeTx(SideMinimap, "Square size", 10000, -132)
@@ -4984,7 +4984,7 @@
end
end)
dragframe:SetBackdropColor(0.0, 0.5, 1.0)
dragframe:SetBackdrop({edgeFile = "Interface/Tooltips/UI-Tooltip-Border", tile = false, tileSize = 0, edgeSize = 16, insets = { left = 0, right = 0, top = 0, bottom = 0}})
--dragframe:SetBackdrop({edgeFile = "Interface/Tooltips/UI-Tooltip-Border", tile = false, tileSize = 0, edgeSize = 16, insets = { left = 0, right = 0, top = 0, bottom = 0}})
dragframe:SetToplevel(true)
dragframe:EnableMouse(true)
dragframe:SetFrameStrata("TOOLTIP")
@@ -4992,7 +4992,7 @@
dragframe:SetScale(LeaPlusLC['minimapFrameGlobal']:GetScale() - 0.10)
dragframe.t = dragframe:CreateTexture()
dragframe.t:SetAllPoints()
dragframe.t:SetAllPoints(LeaPlusLC['minimapFrameGlobal'])
dragframe.t:SetTexture(0.0, 1.0, 0.0, 0.5)
dragframe.t:SetAlpha(0.5)
@@ -12494,7 +12494,7 @@
local function ShowChatbox(chtfrm)
editBox:SetText("")
local NumMsg = chtfrm:GetNumMessages()
scrollbar:SetMinMaxValues(1, 8 * NumMsg) -- Adjust the min and max values as needed
scrollbar:SetMinMaxValues(1, 10 * NumMsg) -- Adjust the min and max values as needed
local StartMsg = 1
if NumMsg > 128 then StartMsg = NumMsg - 127 end