diff ObjectiveTracker/Schema.lua @ 39:92534dc793f2

- restore the previous QuestLogSelection after pulling for selection-restricted quest data; fixes icon mixups while quest map is open - moved progressbar builders into the schema environment, with all the other Frame.lua functions; prep for configuration access - relegate the various removal events to a framescript in their corresponding blocks; this takes care of resolving dead frames
author Nenue
date Thu, 21 Apr 2016 16:43:37 -0400
parents 1f8f9cc3d956
children 756e8aeb040b
line wrap: on
line diff
--- a/ObjectiveTracker/Schema.lua	Thu Apr 21 11:36:41 2016 -0400
+++ b/ObjectiveTracker/Schema.lua	Thu Apr 21 16:43:37 2016 -0400
@@ -111,31 +111,31 @@
     textIndent = 3,
   },
   completed = {
-    textColor = {0, 1, 0}
+    textColor = {.5, 1, .5}
   },
   failed = {
-    textColor = {1,0,0 }
+    textColor = {1,.25,.25 }
   },
   autocomplete = {
-    textColor = {0,1,0 }
+    textColor = {.5,1,1 }
   },
-  objectColor = {
+  object = {
     textColor = {0,1,1}
   },
   monster = {
     textColor = {1,1,0}
   },
   item = {
-    textColor = {1,.25,.5}
+    textColor = {1,.75,.75}
   },
   achievement_complete = {
     textColor = {1, 1, 1, 1},
   },
   achievement = {
-    textColor = {0, 0.7, 1, 1},
+    textColor = {0.5, 0.85, 1, 1},
   },
   achievement_account = {
-    textColor = {.35, 0.7, 1, 1},
+    textColor = {.4, 0.7, 1, 1},
   },
 }
 T.defaults.Schema.widget = {
@@ -145,4 +145,11 @@
   timer = {
 
   }
+}
+
+T.defaults.Schema.statusbar = {
+  default = {
+    textFont = {[[Interface\Addons\SharedMedia_MyMedia\font\XOIREQE.TTF]], 11, 'OUTLINE'},
+    textColor = {1,1,1,1},
+  }
 }
\ No newline at end of file