Set whether to show welcome dialog
(self, show: bool)
| 102 | return self.get_setting("show_welcome", True) |
| 103 | |
| 104 | def set_show_welcome(self, show: bool): |
| 105 | """Set whether to show welcome dialog""" |
| 106 | self.set_setting("show_welcome", show) |
| 107 | |
| 108 | def should_show_about_on_startup(self) -> bool: |
| 109 | """Check if about dialog should be shown on startup""" |
no test coverage detected