(style: str, bar_id: int = 0)
| 282 | |
| 283 | @staticmethod |
| 284 | def setWorkspacesStyle(style: str, bar_id: int = 0): |
| 285 | user_settings.interface.modules.options.set_workspaces_style(style) |
| 286 | for bar in BarStyles.bar_instances: |
| 287 | if bar.workspaces: |
| 288 | bar.workspaces.update_workspaces() |
| 289 | bar.workspaces.update_layout() |
| 290 | |
| 291 | @staticmethod |
| 292 | def setSeparation(enabled: bool, bar_id: int = 0): |
nothing calls this directly
no test coverage detected