瀏覽代碼

*** empty log message ***

Joe Shochet 24 年之前
父節點
當前提交
6eaebb92c3
共有 2 個文件被更改,包括 4 次插入3 次删除
  1. 4 2
      direct/src/gui/DirectGuiBase.py
  2. 0 1
      direct/src/gui/DirectScrolledList.py

+ 4 - 2
direct/src/gui/DirectGuiBase.py

@@ -146,8 +146,10 @@ class DirectGuiBase(PandaObject.PandaObject):
         # no components with this group have been created.
         # self._dynamicGroups = ()
 
-    def __del__(self):
-        print 'Bye'
+    # Looks like they are being deleted, add this back in if
+    # we need to check again
+    #def __del__(self):
+    #    print 'Bye'
 
     def defineoptions(self, keywords, optionDefs, dynamicGroups = ()):
         """ defineoptions(keywords, optionDefs, dynamicGroups = {}) """

+ 0 - 1
direct/src/gui/DirectScrolledList.py

@@ -106,7 +106,6 @@ class DirectScrolledList(DirectFrame):
             item = self["items"][i]
             item.show()
             item.setPos(0,0, - (i - self.index) * self.maxHeight)
-        print 'joe'
         return ret
 
     def __scrollByTask(self, task):