XObjectBase/GtkClutterActor.js
[app.Builder.js] / XObjectBase / GtkClutterActor.js
index ab912da..945b58f 100644 (file)
@@ -13,11 +13,12 @@ GtkClutterActor = {
     
     pack : function(parent, item)
     {
-        print('actor pack: ' +  XObject.type(parent.xtype));
+        
         if (XObject.type(parent.xtype) == 'GtkClutterWindow') {
             var st = parent.el.getStage();
             st.add_actor(this.el);
         }
+        XObject.fatal("do not know how to pack actor into " +  XObject.type(parent.xtype));
         
     },