Jelajahi Sumber

showbase: Fix exception when calling Ctrl+C at the wrong moment

rdb 3 hari lalu
induk
melakukan
d84b984e22
1 mengubah file dengan 2 tambahan dan 1 penghapusan
  1. 2 1
      direct/src/showbase/ShowBase.py

+ 2 - 1
direct/src/showbase/ShowBase.py

@@ -711,7 +711,8 @@ class ShowBase(DirectObject.DirectObject):
             allowAccessibilityShortcutKeys(True)
             self.__disabledStickyKeys = False
 
-        self.__directObject.ignoreAll()
+        if hasattr(self, '__directObject'):
+            self.__directObject.ignoreAll()
         self.ignoreAll()
         self.shutdown()