Browse Source

*** empty log message ***

Joe Shochet 24 years ago
parent
commit
6eaebb92c3
2 changed files with 4 additions and 3 deletions
  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.
         # no components with this group have been created.
         # self._dynamicGroups = ()
         # 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 = ()):
     def defineoptions(self, keywords, optionDefs, dynamicGroups = ()):
         """ defineoptions(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 = self["items"][i]
             item.show()
             item.show()
             item.setPos(0,0, - (i - self.index) * self.maxHeight)
             item.setPos(0,0, - (i - self.index) * self.maxHeight)
-        print 'joe'
         return ret
         return ret
 
 
     def __scrollByTask(self, task):
     def __scrollByTask(self, task):