(self)
| 209 | TaskbarPanel.open_webbrowser(self.new_version_available[3]) |
| 210 | |
| 211 | def _on_connect(self): |
| 212 | if self.on_connect_callback: |
| 213 | try: |
| 214 | self.on_connect_callback() |
| 215 | except Exception as e: |
| 216 | pass |
| 217 | self.is_connected = True |
| 218 | self.update_menu(no_dialog=True) |
| 219 | |
| 220 | def _on_disconnect(self): |
| 221 | if self.on_disconnect_callback: |
nothing calls this directly
no test coverage detected