I'm creating a watch face for the Instinct 2, and I'm having a problem clearing the display. My watch face doesn't use a layout, so I don't call `View.onUpdate()` in my `onUpdate()` function, and instead use `dc.clear()` when I want to clear the display. I only want to clear the display occasionally, so I don't have to redraw everything on the watch face.
I'm finding that, if I make my watch face only call `dc.clear()` once in certain situations, the "subscreen" (the little circular display in the corner) will not be cleared properly - it will be white when the rest of the display is black. This happens when I am viewing the widget glances and then return to the watch face. I'm not sure if I'm doing something wrong, or if this is a bug, so I've included an example watch face based on the default watch face that reproduces the issue.
```