~charclo-michael/entertainer/subtitle-support

« back to all changes in this revision

Viewing changes to entertainerlib/frontend/gui/widgets/grid_menu.py

  • Committer: Paul Hummer
  • Date: 2009-02-10 01:10:03 UTC
  • mfrom: (344.1.3 kill-fixmes)
  • Revision ID: paul@eventuallyanyway.com-20090210011003-oc421zcb7m2wxxgh
All FIXME comments have been removed. (Paul Hummer)

Show diffs side-by-side

added added

removed removed

Lines of Context:
202
202
        """
203
203
        Override clutter.Group method. Returns number of menuitems.
204
204
        """
205
 
        #FIXME: Is this safe?
206
205
        return len(self.items)
207
206
 
208
207
    def get_nth_child(self, index):
209
208
        """
210
209
        Override clutter.Group method. Returns one menuitem.
211
210
        """
212
 
        #FIXME: Is this safe?
213
211
        return self.items[index]
214
212
 
215
213
    def get_number_of_items(self):
522
520
        # BELOW IS ANIMATION CODE FOR MENU CURSOR. SHOULD CURSOR BE ANIMATED?
523
521
#        if self.animate:
524
522
#            # Finish previous animation before new
525
 
#            # FIXME: Doesn't seem to work as it should
526
523
#            if self.cursor_timeline is not None and (
527
524
#               self.cursor_timeline.is_playing():
528
525
#                self.cursor_timeline.pause()
585
582
#            y = self.itemgroup.get_y()
586
583
#
587
584
#            # Finish previous animation before new
588
 
#            # FIXME: Doesn't seem to work as it should
589
585
#            if self.content_timeline is not None and (
590
586
#               self.content_timeline.is_playing():
591
587
#                self.content_timeline.pause()