height of the ckeditor4.15

Hi
I have this

{
view: ‘ckeditor’,
id: ‘template-editor’,
name: ‘template-content’,
hidden: false,
}

and in ckeditor.js:

this._3rd_editor = CKEDITOR.replace( tid , {
toolbar: this.config.toolbar,
language: this.config.language,
height:this.$height,
});
but this height does not have noticed the height of the menu so it is always too high so that the blue button line can’t be seen.
How can I adjust the correct height.

Thank you

Michael

PS.: I got it. In

{
view: ‘ckeditor’,
id: ‘template-editor’,
name: ‘template-content’,
barHeight: 65, //<=== set menu height in px
hidden: false,
}
and in
this._3rd_editor = CKEDITOR.replace( tid , {
toolbar: this.config.toolbar,
language: this.config.language,
height:this.$height - barHeight, //<=== correct the editor height
resize_enabled: false, //<=== important cause resize will
only resize editor but not the
container
});

My helping yell have helped me the most :wink:

Michael