changed import path of QML Components
This commit is contained in:
parent
305656ab1e
commit
86f0c22864
7 changed files with 12 additions and 7 deletions
|
@ -1,10 +1,10 @@
|
|||
<RCC>
|
||||
<qresource prefix="/">
|
||||
<file>lib/ScStwQmlComponents/qmldir</file>
|
||||
<file>lib/ScStwQmlComponents/Test.qml</file>
|
||||
<file>lib/ScStwQmlComponents/BusyIndicator.qml</file>
|
||||
<file>lib/ScStwQmlComponents/Icon.qml</file>
|
||||
<file>lib/ScStwQmlComponents/TimerColumn.qml</file>
|
||||
<file>lib/ScStwQmlComponents/FadeAnimation.qml</file>
|
||||
<file>lib/de/itsblue/ScStw/Styling/Components/BusyIndicator.qml</file>
|
||||
<file>lib/de/itsblue/ScStw/Styling/Components/FadeAnimation.qml</file>
|
||||
<file>lib/de/itsblue/ScStw/Styling/Components/Icon.qml</file>
|
||||
<file>lib/de/itsblue/ScStw/Styling/Components/qmldir</file>
|
||||
<file>lib/de/itsblue/ScStw/Styling/Components/Test.qml</file>
|
||||
<file>lib/de/itsblue/ScStw/Styling/Components/TimerColumn.qml</file>
|
||||
</qresource>
|
||||
</RCC>
|
||||
|
|
|
@ -5,6 +5,11 @@ import QtQuick.Controls 2.0
|
|||
T.BusyIndicator {
|
||||
id: control
|
||||
|
||||
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
|
||||
implicitContentWidth + leftPadding + rightPadding)
|
||||
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
|
||||
implicitContentHeight + topPadding + bottomPadding)
|
||||
|
||||
contentItem: Item {
|
||||
Image {
|
||||
id: holdImage
|
|
@ -1,4 +1,4 @@
|
|||
module ScStwQmlComponents
|
||||
module de.itsblue.ScStw.Styling.Components
|
||||
BusyIndicator 1.0 BusyIndicator.qml
|
||||
Icon 1.0 Icon.qml
|
||||
TimerColumn 1.0 TimerColumn.qml
|
Reference in a new issue