diff flax/Timeline.py @ 139:83e2c4ceb79a

KeyboardComposer: let's get it working again KeyboardComposer: let's get it working again TheShow: get_timelines method Timeline: it's late, okay? TimelineDMX: timeline selector, basically copied from that music player thing
author dmcc
date Sat, 14 Jun 2003 16:19:40 +0000
parents 304152488ed7
children 851cf44cea40
line wrap: on
line diff
--- a/flax/Timeline.py	Sat Jun 14 16:01:31 2003 +0000
+++ b/flax/Timeline.py	Sat Jun 14 16:19:40 2003 +0000
@@ -168,7 +168,7 @@
         """This makes sure all events are in the right order and have defaults
         filled in if they have missing frames."""
         self.events.sort()
-        self.fill_in_missing frames()
+        self.fill_in_missing_frames()
     def add_event(self, event):
         """Add a TimedEvent object to this TimelineTrack"""
         self.events.append(event)
@@ -188,7 +188,7 @@
         self.events = [e for e in self.events
             if e.time >= starttime and e.time <= endtime]
         self._cleaup_events(self.events)
-    def fill_in_missing frames(self):
+    def fill_in_missing_frames(self):
         """Runs through all events and sets TimedEvent with missing frames to
         the default frame."""
         for event in self.events: