Acknowledged

Instinct E 40mm screen size discrepancy

In the simulator version 7.4.3,  for the Instinct E 40mm, deviceSettings.screenHeight and screenWidth return 166, but the simulator screen is 164x164 pixels.

  • Sounds like it may be similar to what you see with the I2s where the visible part of the screen below the subscreen is actually 7 pixels narrower than the part of the screen with the subscreen (7 pixels on the right)

  • A watchface type app.

    If you run your cursor to the edge of the display, you will see the highest x&y co-ordinates reported as 163.

    IF you draw:

            dc.setColor(Graphics.COLOR_WHITE,Graphics.COLOR_TRANSPARENT);
            dc.drawRectangle(0,0,164,164);
    the whole square is displayed.
    but if you draw:
            dc.setColor(Graphics.COLOR_WHITE,Graphics.COLOR_TRANSPARENT);
            dc.drawRectangle(0,0,165,165);
    the left and right sides of the square get clipped.
  • How/where are you seeing 164x164 in the sim?  What app type?  With one of my test apps, (a device app) I see 166x166 for both the screen and the dc.