I’m testing a mockup of an idea with a large scrollview group containing a single .jpg of 1242 x 6000 px, and when I test it in the simulator on iPhone 4 and 5, I see a small 1px light gray border around the entire scrollview container, but the border does not appear when previewed in the simulator for iPhone 6 and 6 Plus.

Does anyone know why this is? In the code I’ve changed the background color of the scrollview to black, but the border is still there.
-- Our ScrollView listener local function scrollListener1( event ) local phase = event.phase local direction = event.direction return true end mainScrollWindow1 = widget.newScrollView { left = 0, top = 0, width = display.contentWidth, height = display.contentHeight, bottomPadding = 0, id = "onBottom", horizontalScrollDisabled = true, verticalScrollDisabled = false, listener = scrollListener1, backgroundColor = { 0, 0, 0 }, hideBackground = false, friction = .92 } mainScrollWindow1.isVisible = true
