关于Cocos IDE是不是有个BUG

windown cocosIde:创建menu,响应区域在创建的menu偏下1/2的地方,
mac cocosIde:没有该问题出现
请问是什么原因嘛?

源码:
var HelloWorldLayer = cc.Layer.extend({

ctor:function () {

    this._super();

    var size = cc.director.getWinSize();
    
    var bg=new cc.Sprite(res.BACKGROUND_png);
    bg.attr({
        x:size.width/2,
        y:size.height/2
    });
    this.addChild(bg);
    
    var placeLabel=new cc.LabelTTF("Place","Arial",32);
    var placeMenu=new cc.MenuItemLabel(placeLabel,function(){
        cc.log("Place");
    },this);
    
    var mn=new cc.Menu(placeMenu);

// mn.alignItemsVertically();
this.addChild(mn,1);

    return true;
}

});

var HelloWorldScene = cc.Scene.extend({
onEnter:function () {
this._super();
var layer = new HelloWorldLayer();
this.addChild(layer);
}
});

我也有过类似的问题,

好像是jsb模拟器整个偏调了

换个真机 或者其他的机器试试