From c2ff106684bae87c1cee3cc0ee02ddf57249d977 Mon Sep 17 00:00:00 2001 From: Joe Shochet Date: Mon, 7 Oct 2002 03:22:28 +0000 Subject: [PATCH] month date control --- direct/src/gui/DirectScrolledList.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/gui/DirectScrolledList.py b/direct/src/gui/DirectScrolledList.py index 57a149a798..960f79213d 100644 --- a/direct/src/gui/DirectScrolledList.py +++ b/direct/src/gui/DirectScrolledList.py @@ -129,7 +129,7 @@ class DirectScrolledList(DirectFrame): # If there is a function to create the item item = apply(self['itemMakeFunction'], (item, i, self['itemMakeExtraArgs'])) else: - item = DirectFrame(text = item) + item = DirectFrame(text = item, relief = None) # Then add the newly formed item back into the normal item list self["items"][i] = item item.reparentTo(self.itemFrame)