@@ -19,11 +19,10 @@ Rectangle {
1919 /* !
2020 \qmlproperty real scaleFactor
2121 \brief The scale factor used for sizing UI elements.
22- \internal
2322
2423 Pixel density and screen resolution varies greatly between different
2524 devices and operating systems. This property allows your app to specify
26- the width and height of UI elements so that the sizes appear similar
25+ the width or height of UI elements so that the sizes appear similar
2726 (relative to screen size) across devices. Here is an example of how to
2827 use this property.
2928
@@ -41,31 +40,31 @@ Rectangle {
4140 \qmlproperty int buttonWidth
4241 \brief The width of various buttons on this tool.
4342
44- The default value is \c {100 * \l scaleFactor}.
43+ The default value is \c {100 * scaleFactor}.
4544 */
4645 property int buttonWidth: 100 * scaleFactor
4746
4847 /* !
4948 \qmlproperty int spacingValue
5049 \brief The spacing between rows and columns on this tool.
5150
52- The default value is \c {5 * \l scaleFactor}.
51+ The default value is \c {5 * scaleFactor}.
5352 */
5453 property int spacingValue: 5 * scaleFactor
5554
5655 /* !
5756 \qmlproperty int imageWidth
5857 \brief The width of the images used for buttons on this tool.
5958
60- The default value is \c {36 * \l scaleFactor}.
59+ The default value is \c {36 * scaleFactor}.
6160 */
6261 property int imageWidth: 36 * scaleFactor
6362
6463 /* !
6564 \qmlproperty int fontSize
6665 \brief The font size of coordinate notation text on this tool.
6766
68- The default value is \c {12 * \l scaleFactor}.
67+ The default value is \c {12 * scaleFactor}.
6968 */
7069 property int fontSize: 12 * scaleFactor
7170
0 commit comments