(self, fraction: float)
| 23 | self.progress_bar.props.visible = False |
| 24 | |
| 25 | def progress(self, fraction: float): |
| 26 | if self.stack.props.visible_child_name != "progress": |
| 27 | self.stack.props.visible_child_name = "progress" |
| 28 | self.props.tooltip_text = _("Cancel Audio") |
| 29 | self.progress_bar.props.visible = True |
| 30 | |
| 31 | self.progress_bar.props.fraction = fraction |
| 32 | |
| 33 | def error(self, message: str): |
| 34 | self.stack.props.visible_child_name = "error" |
no outgoing calls
no test coverage detected