Skip to content

Commit

Permalink
Fix for column visibility on Macs (#969)
Browse files Browse the repository at this point in the history
  • Loading branch information
raivisdejus authored Nov 1, 2024
1 parent 807b43f commit b868e61
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion buzz/widgets/transcription_tasks_table_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,9 @@ def __init__(self, parent: Optional[QWidget] = None):
definition.header,
)

visible = self.settings.settings.value(definition.id, "true") == "true"
visible = True
if definition.hidden_toggleable:
visible = self.settings.settings.value(definition.id, "true") in {"true", "True", True}

self.setColumnHidden(definition.column.value, not visible)
if definition.width is not None:
Expand Down

0 comments on commit b868e61

Please sign in to comment.