Fixed input_passthrough property not being set (#2723)

* Fixed input_passthrough property not being set

In the table of properties supplied to the `wibox` function, you couldn't set the `input_passthrough` property. You could only set it after the wibox was created like this: `my_shlick_wibox.input_passthrough = true`. This commit fixes that and now you can set it in both ways.
This commit is contained in:
Adrian Gabriel 2019-03-12 18:23:53 +02:00 committed by Uli Schlachter
parent f69b72ab36
commit 0642d92967
1 changed files with 1 additions and 1 deletions

View File

@ -340,7 +340,7 @@ local function new(args)
ret.shape = args.shape
end
if args.screen then
if args.input_passthrough then
ret.input_passthrough = args.input_passthrough
end