We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc76acd commit 7f87a6eCopy full SHA for 7f87a6e
src/editor/core/draw/frame/Footer.ts
@@ -104,6 +104,7 @@ export class Footer {
104
}
105
106
public getHeight(): number {
107
+ if (this.options.footer.disabled) return 0
108
const maxHeight = this.getMaxHeight()
109
const rowHeight = this.getRowHeight()
110
return rowHeight > maxHeight ? maxHeight : rowHeight
src/editor/core/draw/frame/Header.ts
@@ -107,6 +107,7 @@ export class Header {
+ if (this.options.header.disabled) return 0
111
112
113
0 commit comments