aboutsummaryrefslogtreecommitdiff
path: root/awesompd.lua
diff options
context:
space:
mode:
authorAlexander Yakushev <yakushev.alex@gmail.com>2010-11-25 03:02:45 +0200
committerAlexander Yakushev <yakushev.alex@gmail.com>2010-11-25 03:02:45 +0200
commit3368c5192e9a99bd47907cd18837e61db73c9566 (patch)
treefcd379f0d1538b258d921309a6f7240565de4ddd /awesompd.lua
parent615a378947f4401d94723258dd1d00630dce7f5a (diff)
downloadawesompd-3368c5192e9a99bd47907cd18837e61db73c9566.tar.gz
awesompd-3368c5192e9a99bd47907cd18837e61db73c9566.tar.bz2
Fixed minor mistake
Diffstat (limited to 'awesompd.lua')
-rw-r--r--awesompd.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/awesompd.lua b/awesompd.lua
index 142d934..af88199 100644
--- a/awesompd.lua
+++ b/awesompd.lua
@@ -105,7 +105,7 @@ function awesompd:run()
self.update_widget_timer = timer({ timeout = 1 })
self.update_widget_timer:add_signal("timeout", function () self:update_widget() end)
self.update_widget_timer:start()
- self.update_track_timer = timer({ timeout = 1 })
+ self.update_track_timer = timer({ timeout = self.update_interval })
self.update_track_timer:add_signal("timeout", function () self:update_track() end)
self.update_track_timer:start()
end