Bug: Read-Only TextArea Triggers Keyboard

In creating an instructions screen for my Baby Names app, I discovered that the Label control doesn't yet support multi-line text, and so a TextArea control must be used with editable: false.

But touching the TextArea to scroll it causes the keyboard to appear, which would appear to be a bug, so it's not a very good workaround.

To reproduce:

import bb.cascades 1.0

Page {
    content: Container {
        background: Color.create ("#FFFFFF")
        layout: DockLayout {
        }
        TextArea {
            editable: false
            text: "A

B

C

D

E

F

G

H

I

J

K

L

M

N

O

P"
        }
    }
}

I've created a Jira ticket on the BB issue tracker:

https://www.blackberry.com/jira/browse/BBTEN-102