changed import path of QML Components

This commit is contained in:
Dorian Zedler 2020-05-26 17:45:07 +02:00
parent 305656ab1e
commit 86f0c22864
Signed by: dorian
GPG key ID: 989DE36109AFA354
7 changed files with 12 additions and 7 deletions

View file

@ -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>

View file

@ -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

View file

@ -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