-
Bug
-
Resolution: Fixed
-
P2: Important
-
6.9.2, 6.10.0 Beta3
-
None
-
-
006c4eedd (dev), 4bfe26268 (6.10), 18f942b22 (6.9)
The background of TextArea is not rendered in Fusion style. See the following code and attached screenshot. Without the placeholder text, it wouldn't even be possible to see that there exists a text area. Also, there is no indication whether the text area has the focus. I tested this on Debian and Ubuntu.
import QtQuick import QtQuick.Controls ApplicationWindow { width: 200 height: 200 visible: true Column { spacing: 20 TextArea { placeholderText: "TextArea" } TextField { placeholderText: "TextField" } } }