Override notify to use faster timeout (default 1.5s instead of 5s)
(self, message, *, title="", severity="information", timeout=1.5)
| 219 | pass # Shell pane might not exist yet |
| 220 | |
| 221 | def notify(self, message, *, title="", severity="information", timeout=1.5): |
| 222 | """Override notify to use faster timeout (default 1.5s instead of 5s)""" |
| 223 | super().notify(message, title=title, severity=severity, timeout=timeout) |
| 224 | |
| 225 | def _get_welcome_screen_content(self) -> str: |
| 226 | """Generate the My Vault welcome screen content with current theme colors""" |
no outgoing calls
no test coverage detected