From 3e0c065d9f4040d36503b76e06b36db9cb71b692 Mon Sep 17 00:00:00 2001 From: "James D. Callahan III" Date: Tue, 20 Apr 2010 01:01:18 -0400 Subject: [PATCH] Adjusted the Widget containers to be anchored closer to the MainPanel's right edge. --- Frame.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Frame.lua b/Frame.lua index c71cdcd..74b59d6 100644 --- a/Frame.lua +++ b/Frame.lua @@ -1360,12 +1360,12 @@ end ------------------------------------------------------------------------------- local WidgetContainer = CreateFrame("Frame", nil, MainPanel) WidgetContainer:SetPoint("TOPLEFT", MainPanel, "TOPLEFT", 75, -39) -WidgetContainer:SetPoint("TOPRIGHT", MainPanel, "TOPRIGHT", -15, -39) +WidgetContainer:SetPoint("TOPRIGHT", MainPanel, "TOPRIGHT", -5, -39) WidgetContainer:SetHeight(30) local WidgetContainer2 = CreateFrame("Frame", nil, MainPanel) WidgetContainer2:SetPoint("TOPLEFT", MainPanel, "TOPLEFT", 15, -70) -WidgetContainer2:SetPoint("TOPRIGHT", MainPanel, "TOPRIGHT", -15, -70) +WidgetContainer2:SetPoint("TOPRIGHT", MainPanel, "TOPRIGHT", -5, -70) WidgetContainer2:SetHeight(30) -- Upvalued above for use in selecting the appropriate view tab. -- 1.7.9.5