- 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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user