Browse Source

month date control

Joe Shochet 23 years ago
parent
commit
c2ff106684
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/gui/DirectScrolledList.py

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

@@ -129,7 +129,7 @@ class DirectScrolledList(DirectFrame):
                     # If there is a function to create the item
                     # If there is a function to create the item
                     item = apply(self['itemMakeFunction'], (item, i, self['itemMakeExtraArgs']))
                     item = apply(self['itemMakeFunction'], (item, i, self['itemMakeExtraArgs']))
                 else:
                 else:
-                    item = DirectFrame(text = item)
+                    item = DirectFrame(text = item, relief = None)
                 # Then add the newly formed item back into the normal item list
                 # Then add the newly formed item back into the normal item list
                 self["items"][i] = item
                 self["items"][i] = item
                 item.reparentTo(self.itemFrame)
                 item.reparentTo(self.itemFrame)