Code
Minimum working example (MWE):
\setuphead[chapter][number=yes,]
\setuphead[section][number=no,]
\setuphead[subsection][placehead=hidden,]
\definehead[scenesubsection][subsection]
\starttext
\dorecurse{5}{
\chapter{Chapter Name}
\section{Section Name}
\startscenesubsection
\input tufte
\stopscenesubsection
}
\stoptext
Problem
The chapter headings should be enumerated 1 through 5, but some chapter numbers are either hidden or enumerated incorrectly.
The following figure shows the MWE output:
Question
How can the problems with chapter numbering be resolved?
Additional Details
$ context --version
mtx-context | current version: 2017.05.14 19:09
Work Around
Using placehead=no causes the spacing to change when framing an entire section:


\startscenesubsection ... \stopscenesubsection—withplacehead=hiddenthescenesubsectionheaders might as well not be there, and removing them seems to resolve the issue. – 9tTn9B May 19 '17 at 09:04placehead=noinstead ofhidden? – Henri Menke May 19 '17 at 10:58\startscenesubsection\getheadsyncsworks for me on TL2016. I was not yet able to track it down though. – Henri Menke May 21 '17 at 00:29