bugpyFormex - Bugs: bug #40622, ActorList initialization not...

 
 

bug #40622: ActorList initialization not correct in Scene.__init__

Submitter:  Sofie Van Cauter <svcauter>
Submitted:  Mon 18 Nov 2013 10:16:14 AM UTC
   
 
Category:  Rendering Severity:  3 - Normal
Item Group:  Functionality error Status:  Fixed
Privacy:  Public Assigned to:  bverheg
Open/Closed:  Closed
* Mandatory Fields

Add a New Comment Rich Markup
   

Tue 24 Feb 2015 05:00:30 PM UTC, comment #1: 

Fixed in 336e8aa (renamed the attribute to scene)

Benedict Verhegghe <bverheg>
Group administrator
Mon 18 Nov 2013 10:16:14 AM UTC, original submission:  

ActorList expects a Canvas object as attribute but is initialized as follows in Scene.__init__:


self.actors = ActorList(self)
self.oldactors = ActorList(self)
self.annotations = ActorList(self)
self.decorations = ActorList(self)


Should this be changed to:


self.actors = ActorList(self.canvas)
self.oldactors = ActorList(self.canvas)
self.annotations = ActorList(self.canvas)
self.decorations = ActorList(self.canvas)


Sofie Van Cauter <svcauter>
Group Member

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

Attach Files:
   
   
Comment:
   

No files currently attached

 

Depends on the following items: None found

Items that depend on this one: None found

 

Carbon-Copy List
  • -email is unavailable- added by bverheg (Posted a comment)
  • -email is unavailable- added by svcauter (Submitted the item)
  •  

    There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.

    Only logged-in users can vote.

     

    Follow 2 latest changes.

    Date Changed by Updated Field Previous Value => Replaced by
    2015-02-24 bverheg StatusNone Fixed
        Open/ClosedOpen Closed

    Back to the top

    Powered by Savane 3.13-aa77.
    Corresponding source code