The app icon. Not available on Mac because app icons are handled by the OS there.
(self)
| 96 | return _Licensing(self.build_settings['licensing_pubkey']) |
| 97 | @cached_property |
| 98 | def app_icon(self): |
| 99 | """ |
| 100 | The app icon. Not available on Mac because app icons are handled by the |
| 101 | OS there. |
| 102 | """ |
| 103 | if not is_mac(): |
| 104 | return self._qt_binding.QIcon(self.get_resource('Icon.ico')) |
| 105 | @cached_property |
| 106 | def excepthook(self): |
| 107 | """ |
nothing calls this directly
no test coverage detected