Skip to content

Commit

Permalink
Reverse logic for memgator communication thread spawn to exclude
Browse files Browse the repository at this point in the history
linux (for now) re:#404.

Fixes #416
  • Loading branch information
machawk1 committed Apr 4, 2019
1 parent 854c2e2 commit dede885
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bundledApps/WAIL.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ def __init__(self, parent):
# Bind changes in URI to query MemGator
self.memgatorDelayTimer = None

if util.is_linux(): # Issue 404
if not util.is_linux(): # Issue 404
thread.start_new_thread(self.fetchMementos, ())
# Call MemGator on URI change
self.uri.Bind(wx.EVT_KEY_UP, self.uriChanged)
Expand Down

0 comments on commit dede885

Please sign in to comment.