(enabled: bool, bar_id: int = 0)
| 302 | |
| 303 | @staticmethod |
| 304 | def setModuleBackgrounds(enabled: bool, bar_id: int = 0): |
| 305 | BarStyles._get_bar_settings(bar_id).set_module_backgrounds(enabled) |
| 306 | for bar in BarStyles.bar_instances: |
| 307 | BarStyles._apply_css(bar.get_window(bar_id), bar_id) |
| 308 | |
| 309 | @staticmethod |
| 310 | def setFloating(enabled: bool, bar_id: int = 0): |
nothing calls this directly
no test coverage detected