Fix wrong usage of asbool in layout-xkb
This commit is contained in:
parent
f75f1a9f26
commit
5959d73cde
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ class Module(core.module.Module):
|
||||||
log.debug("group num: {}".format(xkb.group_num))
|
log.debug("group num: {}".format(xkb.group_num))
|
||||||
name = (
|
name = (
|
||||||
xkb.group_name
|
xkb.group_name
|
||||||
if util.format.asbool(self.parameter("showname"), False)
|
if util.format.asbool(self.parameter("showname", False))
|
||||||
else xkb.group_symbol
|
else xkb.group_symbol
|
||||||
)
|
)
|
||||||
if self.__show_variant:
|
if self.__show_variant:
|
||||||
|
|
Loading…
Reference in a new issue