Don't use the database tables for runtime fields.
Scott Sibley [08-11-10 - 08:47]
Don't use the database tables for runtime fields.
diff --git a/Modules/Text.lua b/Modules/Text.lua
index c80e8b4..54056bb 100644
--- a/Modules/Text.lua
+++ b/Modules/Text.lua
@@ -140,6 +140,18 @@ do
end
]]
+function copy(t)
+ local tmp = StarTip.new()
+ for k, v in pairs(t) do
+ if type(v) == "table" then
+ v = copy(v)
+ end
+ tmp[k] = v
+ end
+
+ return tmp
+end
+
local defaults = {profile={titles=true, empty = true, lines = {}}}
local defaultLines={
@@ -438,7 +450,7 @@ end
function mod:CreateLines()
local llines = {}
for i, v in ipairs(self.db.profile.lines) do
- llines[i] = v
+ llines[i] = copy(v)
end
lines = setmetatable(llines, {__call=function(self)
local lineNum = 0