Skip to content

Commit 8bd8338

Browse files
committed
Disable automatic loading of data in OSX
For some reason, this causes a segfault.
1 parent 37266ef commit 8bd8338

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/robotide/application/application.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ def _get_editor(self):
8888

8989
def _load_data(self):
9090
path = self._initial_path or self._get_latest_path()
91-
if path:
91+
# FIXME: Loading suite on startuup causes segfault in OSX.
92+
if path and not context.IS_MAC:
9293
with self.active_event_loop():
9394
# FIXME: wxPython3 hack
9495
# observer = LoadProgressObserver(self.frame)

0 commit comments

Comments
 (0)