Quantcast

Made the Filter and Reset buttons the same size as the Search button.

James D. Callahan III [04-19-10 - 08:15]
Made the Filter and Reset buttons the same size as the Search button.
Filename
Frame.lua
diff --git a/Frame.lua b/Frame.lua
index dd66176..a03a46c 100644
--- a/Frame.lua
+++ b/Frame.lua
@@ -1723,7 +1723,7 @@ MainPanel.xclose_button:SetScript("OnClick",
 -------------------------------------------------------------------------------
 -- Create MainPanel.filter_toggle, and set its scripts.
 -------------------------------------------------------------------------------
-MainPanel.filter_toggle = GenericCreateButton(nil, MainPanel, 25, 90, "GameFontNormalSmall", "GameFontHighlightSmall", L["FILTER_OPEN"], "CENTER", L["FILTER_OPEN_DESC"], 1)
+MainPanel.filter_toggle = GenericCreateButton(nil, MainPanel, 25, 74, "GameFontNormalSmall", "GameFontHighlightSmall", L["FILTER_OPEN"], "CENTER", L["FILTER_OPEN_DESC"], 1)
 MainPanel.filter_toggle:SetPoint("TOPRIGHT", MainPanel, "TOPRIGHT", -8, -40)

 MainPanel.filter_toggle:SetScript("OnClick",
@@ -1760,7 +1760,7 @@ MainPanel.filter_toggle:SetScript("OnClick",
 -------------------------------------------------------------------------------
 -- Create MainPanel.filter_reset and set its scripts.
 -------------------------------------------------------------------------------
-MainPanel.filter_reset = GenericCreateButton(nil, MainPanel, 25, 90, "GameFontNormalSmall", "GameFontHighlightSmall", _G.RESET, "CENTER",
+MainPanel.filter_reset = GenericCreateButton(nil, MainPanel, 25, 74, "GameFontNormalSmall", "GameFontHighlightSmall", _G.RESET, "CENTER",
 					     L["RESET_DESC"], 1)
 MainPanel.filter_reset:SetPoint("TOPRIGHT", MainPanel.filter_toggle, "BOTTOMRIGHT", 0, -2)
 MainPanel.filter_reset:Hide()