Details
-
Bug
-
Resolution: Out of scope
-
P3: Somewhat important
-
QDS 4.5.1, QDS 4.6.0
-
None
Description
Code
import QtQuick Text { id: root width: 100 renderType: Text.NativeRendering text: renderType === Text.NativeRendering ? "Native" : "Not Native" }
Steps to reproduce
Check the 2D View, Live Preview, and Properties pane after each step below:
- Put the code above into a *.ui.qml file
- Replace === with !==
Expected outcomes (Live Preview/Propererties)
Step #1 shows "Native", Step #2 shows "Not Native"
Actual outcomes (2D View)
We get the opposite of the expected outcomes