We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37266ef commit 8bd8338Copy full SHA for 8bd8338
src/robotide/application/application.py
@@ -88,7 +88,8 @@ def _get_editor(self):
88
89
def _load_data(self):
90
path = self._initial_path or self._get_latest_path()
91
- if path:
+ # FIXME: Loading suite on startuup causes segfault in OSX.
92
+ if path and not context.IS_MAC:
93
with self.active_event_loop():
94
# FIXME: wxPython3 hack
95
# observer = LoadProgressObserver(self.frame)
0 commit comments