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 d29f6a0 commit 0d90185Copy full SHA for 0d90185
src/render.js
@@ -314,8 +314,9 @@ module.exports = class Render {
314
315
} else {
316
this.display.formats.forEach(currentFormat => {
317
- if (currentFormat.keywords.find(key => key.name === `SFL`)) {
318
- // All but subfiles
+ if (currentFormat.keywords.find(key => [`SFL`, `WINDOW`].includes(key.name))) {
+ // All but subfiles and windows
319
+ // SFL gets written by SFLCTL
320
return;
321
}
322
0 commit comments