diff --git a/ScreenPlay/qml/Workshop/Sidebar.qml b/ScreenPlay/qml/Workshop/Sidebar.qml index 39cecf8d..d57b72ea 100644 --- a/ScreenPlay/qml/Workshop/Sidebar.qml +++ b/ScreenPlay/qml/Workshop/Sidebar.qml @@ -237,8 +237,8 @@ Drawer { ToolTip.visible: hovered ToolTip.text: qsTr("Click here if you like the content") onClicked: { - SP.Workshop.steamWorkshop.vote(root.publishedFileID, - true) + SP.Workshop.steamWorkshop.vote( + root.publishedFileID, true) txtVotesUp.highlighted = true txtVotesDown.highlighted = false } @@ -251,8 +251,8 @@ Drawer { ToolTip.visible: hovered ToolTip.text: qsTr("Click here if you do not like the content") onClicked: { - SP.Workshop.steamWorkshop.vote(root.publishedFileID, - false) + SP.Workshop.steamWorkshop.vote( + root.publishedFileID, false) txtVotesUp.highlighted = false txtVotesDown.highlighted = true } @@ -283,20 +283,14 @@ Drawer { Text { id: txtTags - Layout.alignment: Qt.AlignLeft + property string tags + Layout.fillWidth: true text: qsTr("Tags: ") + tags font.pointSize: 11 - Behavior on opacity { - NumberAnimation { - duration: 200 - } - } - - color: Material.secondaryTextColor font.family: ScreenPlay.settings.font - wrapMode: Text.WrapAtWordBoundaryOrAnywhere + color: Material.secondaryTextColor + wrapMode: Text.WrapAnywhere elide: Text.ElideRight - property string tags } } diff --git a/ScreenPlay/qml/Workshop/upload/UploadProject.qml b/ScreenPlay/qml/Workshop/upload/UploadProject.qml index 90bec460..69b8942d 100644 --- a/ScreenPlay/qml/Workshop/upload/UploadProject.qml +++ b/ScreenPlay/qml/Workshop/upload/UploadProject.qml @@ -187,10 +187,10 @@ Popup { delegate: UploadProjectItem { - previewImagePath: _absolutePreviewImagePath - progress: _uploadProgress - name: _name - steamStatus: _status + previewImagePath: m_absolutePreviewImagePath + progress: m_uploadProgress + name: m_name + steamStatus: m_status } ScrollBar.vertical: ScrollBar { diff --git a/ScreenPlay/qml/Workshop/upload/UploadProjectBigItem.qml b/ScreenPlay/qml/Workshop/upload/UploadProjectBigItem.qml index 690f7f1e..7cfdd881 100644 --- a/ScreenPlay/qml/Workshop/upload/UploadProjectBigItem.qml +++ b/ScreenPlay/qml/Workshop/upload/UploadProjectBigItem.qml @@ -120,7 +120,7 @@ Item { Button { text: qsTr("Open Folder") onClicked: ScreenPlay.util.openFolderInExplorer( - screenAbsoluteStoragePath) + m_absoluteStoragePath) anchors { right: parent.right bottom: parent.bottom