diff options
author | 2016-04-09 09:02:07 -0500 | |
---|---|---|
committer | 2016-04-09 09:02:07 -0500 | |
commit | cf8c7fb20687115450296ba42869562ea652bf51 (patch) | |
tree | 73f14ce27b5209b2f17b392e12f29d4f455fd644 /plugins/timer/init.lua | |
parent | db332408623dff5fbf6ee7d0ff617ccd8156fc7e (diff) |
luaengine: make flags explicit (nw)
Diffstat (limited to 'plugins/timer/init.lua')
-rw-r--r-- | plugins/timer/init.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/timer/init.lua b/plugins/timer/init.lua index 3b00bb01f9b..3a96f019f0d 100644 --- a/plugins/timer/init.lua +++ b/plugins/timer/init.lua @@ -75,12 +75,12 @@ function timer.startplugin() local function menu_populate() local time = os.time() - start_time - return {{ "Current time", "", 32 }, - { sectohms(time), "", 32 }, - { "Total time", "", 32 }, - { sectohms(total_time + time), "", 32 }, - { "Play Count", "", 32 }, - { play_count, "", 32 }} + return {{ "Current time", "", "off" }, + { sectohms(time), "", "off" }, + { "Total time", "", "off" }, + { sectohms(total_time + time), "", "off" }, + { "Play Count", "", "off" }, + { play_count, "", "off" }} end local function menu_callback(index, event) |