From 4a338b99ac619aca2a7bc89de64b81e4fb57bc72 Mon Sep 17 00:00:00 2001 From: Jonathan Harris Date: Sun, 8 Nov 2015 20:25:55 +0000 Subject: [PATCH] Fix selecting auto flight log. Fixes #38 (really). --- prefs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prefs.py b/prefs.py index 78621b3e..d25653c8 100644 --- a/prefs.py +++ b/prefs.py @@ -335,7 +335,7 @@ class PreferencesDialog(tk.Toplevel): hotkeymgr.register(self.parent, config.getint('hotkey_code'), config.getint('hotkey_mods')) if (config.getint('output') & config.OUT_LOG_AUTO) and (config.getint('output') & (config.OUT_LOG_AUTO|config.OUT_LOG_EDSM)): monitor.enable_logging() - monitor.start() + monitor.start(self.parent) else: monitor.stop() self.destroy()