fix(StatusBaseInput): fix typo in verticalAlignement
This commit is contained in:
parent
a14d4b9680
commit
8bc4dc906c
|
@ -119,10 +119,10 @@ Item {
|
||||||
*/
|
*/
|
||||||
property alias focussed: edit.activeFocus
|
property alias focussed: edit.activeFocus
|
||||||
/*!
|
/*!
|
||||||
\qmlproperty alias StatusBaseInput::verticalAlignmet
|
\qmlproperty alias StatusBaseInput::verticalAlignment
|
||||||
This property holds a reference to the TextEdit component's verticalAlignmet property.
|
This property holds a reference to the TextEdit component's verticalAlignment property.
|
||||||
*/
|
*/
|
||||||
property alias verticalAlignmet: edit.verticalAlignment
|
property alias verticalAlignment: edit.verticalAlignment
|
||||||
/*!
|
/*!
|
||||||
\qmlproperty alias StatusBaseInput::horizontalAlignment
|
\qmlproperty alias StatusBaseInput::horizontalAlignment
|
||||||
This property holds a reference to the TextEdit component's horizontalAlignment property.
|
This property holds a reference to the TextEdit component's horizontalAlignment property.
|
||||||
|
|
|
@ -23,7 +23,7 @@ Item {
|
||||||
property alias color: edit.color
|
property alias color: edit.color
|
||||||
property alias font: edit.font
|
property alias font: edit.font
|
||||||
property alias focussed: edit.activeFocus
|
property alias focussed: edit.activeFocus
|
||||||
property alias verticalAlignmet: edit.verticalAlignment
|
property alias verticalAlignment: edit.verticalAlignment
|
||||||
property alias horizontalAlignment: edit.horizontalAlignment
|
property alias horizontalAlignment: edit.horizontalAlignment
|
||||||
|
|
||||||
signal linkActivated(string link)
|
signal linkActivated(string link)
|
||||||
|
|
Loading…
Reference in New Issue