From 22133471edfa82692fdd752fb02e2a0674c0df02 Mon Sep 17 00:00:00 2001 From: Quan Guo Date: Fri, 10 Jan 2014 16:04:34 +0100 Subject: [PATCH] fix tow bugs. 1) function revelation.init() ould be revelation.init(args) 2) in init() args.match.exact should be args.match.any Thanks @henfiber --- init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index b881b43..4874563 100644 --- a/init.lua +++ b/init.lua @@ -239,7 +239,7 @@ function revelation.expose(args) end -- Create the wiboxes, but don't show them -function revelation.init() +function revelation.init(args) hintsize = 60 local fontcolor = beautiful.fg_normal local letterbox = {} @@ -249,7 +249,7 @@ function revelation.init() revelation.tag_name = args.tag_name or revelation.tag_name if args.match then revelation.match.exact = args.match.exact or revelation.match.exact - revelation.match.any = args.match.exact or revelation.match.any + revelation.match.any = args.match.any or revelation.match.any end