Mark first run as complete
(self)
| 94 | return self.get_setting("first_run", True) |
| 95 | |
| 96 | def mark_first_run_complete(self): |
| 97 | """Mark first run as complete""" |
| 98 | self.set_setting("first_run", False) |
| 99 | |
| 100 | def should_show_welcome(self) -> bool: |
| 101 | """Check if welcome dialog should be shown""" |
no test coverage detected