public
Description: WoW Addon - Prospecting and Disenchanting Aide
Homepage: http://www.tekkub.net
Clone URL: git://github.com/tekkub/panda.git
Click here to lend your support to: panda and make a donation at www.pledgie.com !
Add pearls to gem cutting panel
tekkub (author)
Sat Jun 21 14:18:59 -0700 2008
commit  d094f8e16a1c35950c8c63662b674c5fa874bbba
tree    4e521f8bb45292b3aa188656ff6df01d8d14e15d
parent  277460d46cdc56472f380436e53cd0feb5ca1fd1
...
55
56
57
58
 
59
60
61
...
74
75
76
77
 
78
79
80
 
81
82
83
...
55
56
57
 
58
59
60
61
...
74
75
76
 
77
78
79
 
80
81
82
83
0
@@ -55,7 +55,7 @@ function Panda:CreateCutGreenBluePanel()
0
   for i,rawid in ipairs(BC_GREEN_GEMS) do
0
     local f = CreateFrame("Frame", nil, frame)
0
     if i == 1 then
0
- f:SetPoint("TOPLEFT", frame, "TOPLEFT", HGAP, -HGAP)
0
+ f:SetPoint("BOTTOMLEFT", frame, "TOPLEFT", 0, -HGAP-VGAP)
0
     else
0
       f:SetPoint("TOPLEFT", rowanchor, "BOTTOMLEFT", 0, VGAP)
0
     end
0
@@ -74,10 +74,10 @@ function Panda:CreateCutGreenBluePanel()
0
   for i,rawid in ipairs(BC_BLUE_GEMS) do
0
     local f = CreateFrame("Frame", nil, frame)
0
     if i == 1 then
0
- f:SetPoint("TOPLEFT", frame, "TOPLEFT", HGAP*8 + 32*8, -HGAP)
0
+ f:SetPoint("BOTTOMLEFT", frame, "TOPLEFT", HGAP*8 + 32*8, -HGAP-VGAP)
0
 
0
       local f2 = CreateFrame("CheckButton", nil, frame, "SecureActionButtonTemplate")
0
- f2:SetPoint("BOTTOMLEFT", f, "TOPLEFT", 0, -VGAP)
0
+ f2:SetPoint("TOPRIGHT", f, "TOPLEFT", -HGAP*2, 0)
0
       SetupFrame(f2, 35945, true, true)
0
       cutframes[35945] = f2
0
     else
...
71
72
73
74
75
 
 
76
77
78
...
88
89
90
 
 
91
92
93
...
71
72
73
 
 
74
75
76
77
78
...
88
89
90
91
92
93
94
95
0
@@ -71,8 +71,8 @@ end
0
 -- Constants --
0
 -------------------------
0
 
0
-Panda.BC_GREEN_GEMS = {23077, 21929, 23112, 23079, 23117, 23107}
0
-Panda.BC_BLUE_GEMS = {23436, 23439, 23440, 23437, 23438, 23441}
0
+Panda.BC_GREEN_GEMS = {24478, 23077, 21929, 23112, 23079, 23117, 23107}
0
+Panda.BC_BLUE_GEMS = {24479, 23436, 23439, 23440, 23437, 23438, 23441}
0
 Panda.BC_EPIC_GEMS = {32227, 32231, 32229, 32249, 32228, 32230}
0
 Panda.BC_META_GEMS = {25867, 25868}
0
 Panda.CUTS = {
0
@@ -88,6 +88,8 @@ Panda.CUTS = {
0
   [23437] = {24062, 24065, 24066, 24067, 33782, 35318},
0
   [23438] = {24033, 24035, 24037, 24039},
0
   [23441] = {24054, 24055, 24056, 24057, 31863, 31865, 35707},
0
+ [24478] = {32833},
0
+ [24479] = {32836},
0
   [25867] = {25896, 25897, 25898, 25899, 25901, 32409, 35501},
0
   [25868] = {25890, 25893, 25894, 25895, 32410, 34220, 35503},
0
   [32227] = {32193, 32194, 32195, 32196, 32197, 32198, 32199},

Comments

    No one has commented yet.