Skip to content

Commit

Permalink
Merge pull request #73 from a-usr/fix-permanen_blind_mode
Browse files Browse the repository at this point in the history
Update space.py: Fix Permanent blind mode
  • Loading branch information
kraanzu authored Feb 6, 2024
2 parents 1cb1404 + f4ed274 commit b11dd3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion smassh/ui/widgets/typing/space.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def wrapper(space: "Space") -> RenderableType:

def blind_mode(func):
def wrapper(space: "Space", *args, **kwargs) -> Style:
if config_parser.get("blind_mode"):
if config_parser.get("blind_mode") == "on":
return space.get_component_rich_style("--blind-match")

return func(space, *args, **kwargs)
Expand Down

0 comments on commit b11dd3c

Please sign in to comment.