Check if welcome dialog should be shown
(self)
| 98 | self.set_setting("first_run", False) |
| 99 | |
| 100 | def should_show_welcome(self) -> bool: |
| 101 | """Check if welcome dialog should be shown""" |
| 102 | return self.get_setting("show_welcome", True) |
| 103 | |
| 104 | def set_show_welcome(self, show: bool): |
| 105 | """Set whether to show welcome dialog""" |
nothing calls this directly
no test coverage detected