- Minimalistic skin is now the ols minimalistic v2.

- Minimalistic v2 got a new texture, little more darker.
- Few tweaks to make more easy making groups of windows.
- Bookmark now accepts more than two columns.
This commit is contained in:
tercio
2014-09-27 16:20:45 -03:00
parent 5adf84da6b
commit 79f4ba970a
12 changed files with 352 additions and 112 deletions
+8 -2
View File
@@ -662,7 +662,7 @@ end
--Functions for Line Graph Data
-------------------------------------------------------------------------------
function GraphFunctions:AddDataSeries(points, color, n2)
function GraphFunctions:AddDataSeries(points, color, n2, linetexture)
local data
--Make sure there is data points
if not points then
@@ -680,7 +680,13 @@ function GraphFunctions:AddDataSeries(points, color, n2)
end
end
tinsert(self.Data,{Points = data; Color = color})
if linetexture then
if not linetexture:find ("\\") and not linetexture:find ("//") then
linetexture = TextureDirectory..linetexture
end
end
tinsert(self.Data,{Points = data; Color = color; LineTexture=linetexture})
self.NeedsUpdate = true
end