diff --git a/-f b/-f deleted file mode 160000 index d91e9e5b..00000000 --- a/-f +++ /dev/null @@ -1 +0,0 @@ -Subproject commit d91e9e5b81025acc4d25843a2871e72c8924a8fe diff --git a/.gitmodules b/.gitmodules index 81790a01..3e4d5c9e 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,3 @@ -[submodule "-f"] - path = -f - url = https://github.com/mzanetti/QtZeroConf.git [submodule "QtZeroConf"] path = QtZeroConf - url = https://github.com/jbagg/QtZeroConf.git + url = https://github.com/jbagg/QtZeroConf.git \ No newline at end of file diff --git a/nymea-app/ui/mainviews/ScenesView.qml b/nymea-app/ui/mainviews/ScenesView.qml index 9f1f174f..e44bddc7 100644 --- a/nymea-app/ui/mainviews/ScenesView.qml +++ b/nymea-app/ui/mainviews/ScenesView.qml @@ -70,19 +70,19 @@ Item { } } - Label { - Layout.fillWidth: true - text: model.name.toUpperCase() - font.pixelSize: app.extraSmallFont - font.bold: true - font.letterSpacing: 1 - wrapMode: Text.WordWrap - horizontalAlignment: Text.AlignHCenter - maximumLineCount: 2 - elide: Text.ElideRight + Label { + Layout.fillWidth: true + text: model.name.toUpperCase() + font.pixelSize: app.extraSmallFont + font.bold: true + font.letterSpacing: 1 + wrapMode: Text.WordWrap + horizontalAlignment: Text.AlignHCenter + maximumLineCount: 2 + elide: Text.ElideRight + } } } } } } -}