WoWInterface SVN FuBaruClock

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 8 to Rev 9
    Reverse comparison

Rev 8 → Rev 9

trunk/FuBar_uClock/Core.lua
15,12 → 15,14
args = {
twentyFour = {
name = "24 Hour Mode",
desc = "Choose whether to have the time shown in 12hr or 24hr format",
type = "toggle", order = 1,
get = function() return self.db.profile.twentyFour end,
set = function() self.db.profile.twentyFour = not self.db.profile.twentyFour end,
},
showSeconds = {
name = "Show Seconds",
name = "Choose whether to show seconds",
type = "toggle", order = 2,
get = function() return self.db.profile.showSeconds end,
set = function() self.db.profile.showSeconds = not self.db.profile.showSeconds end,