MCPcopy
hub / github.com/mherrmann/fbs / app_icon

Method app_icon

fbs_runtime/application_context/__init__.py:98–104  ·  view source on GitHub ↗

The app icon. Not available on Mac because app icons are handled by the OS there.

(self)

Source from the content-addressed store, hash-verified

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 """

Callers

nothing calls this directly

Calls 2

get_resourceMethod · 0.95
is_macFunction · 0.90

Tested by

no test coverage detected