From 224c411736b7e233f4947afcc338e983fb1565bb Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Wed, 29 May 2013 18:23:28 +0000 Subject: delay loading plugins --- (limited to 'turtleblocks.py') diff --git a/turtleblocks.py b/turtleblocks.py index 4b7c443..baf264d 100755 --- a/turtleblocks.py +++ b/turtleblocks.py @@ -577,7 +577,8 @@ Would you like to save before quitting?')) ''' Turn hover help off ''' self.tw.no_help = True self.tw.last_label = None - self.tw.status_spr.hide() + if self.tw.status_spr is not None: + self.tw.status_spr.hide() self.hover.set_active(False) self.client.set_int(self._HOVER_HELP, 1) -- cgit v0.9.1