aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/studiowelcome
diff options
context:
space:
mode:
authorThomas Hartmann <thomas.hartmann@qt.io>2019-06-04 11:07:26 +0200
committerThomas Hartmann <thomas.hartmann@qt.io>2019-06-06 08:57:24 +0000
commit119c56ecceeecc11623283a64bdbdc22a58d36c2 (patch)
treeed0eb924c1c264ca2454746c7faba57253b444d3 /src/plugins/studiowelcome
parent403672ca6b424e3f13a7b23fe0bcbcc4fe0f4ee1 (diff)
StudioWelcome: Show text for community edition
Change-Id: I34063c9c51f4f31f6481461b9505df6c1e231e3a Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
Diffstat (limited to 'src/plugins/studiowelcome')
-rw-r--r--src/plugins/studiowelcome/qml/splashscreen/Welcome_splash.qml14
-rw-r--r--src/plugins/studiowelcome/qml/welcomepage/main.qml15
2 files changed, 29 insertions, 0 deletions
diff --git a/src/plugins/studiowelcome/qml/splashscreen/Welcome_splash.qml b/src/plugins/studiowelcome/qml/splashscreen/Welcome_splash.qml
index 09c2e7757e..fa90cd8a65 100644
--- a/src/plugins/studiowelcome/qml/splashscreen/Welcome_splash.qml
+++ b/src/plugins/studiowelcome/qml/splashscreen/Welcome_splash.qml
@@ -235,4 +235,18 @@ Image {
}
}
}
+
+ Text {
+ id: all_rights_reserved1
+ x: 15
+ y: 75
+ color: "#ffffff"
+ text: qsTr("Community Edition")
+ font.pixelSize: 13
+ font.family: Constants.titilliumWeb_light
+ visible: projectModel.communityVersion
+ ProjectModel {
+ id: projectModel
+ }
+ }
}
diff --git a/src/plugins/studiowelcome/qml/welcomepage/main.qml b/src/plugins/studiowelcome/qml/welcomepage/main.qml
index 3a37cc1598..288321c2d9 100644
--- a/src/plugins/studiowelcome/qml/welcomepage/main.qml
+++ b/src/plugins/studiowelcome/qml/welcomepage/main.qml
@@ -185,5 +185,20 @@ Item {
onClicked: Qt.openUrlExternally("http://blog.qt.io/")
}
}
+
+ Text {
+ id: qtDesignStudio1
+ x: 891
+ y: 171
+ color: "#ffffff"
+ text: qsTr("Community Edition")
+ anchors.right: parent.right
+ anchors.rightMargin: 23
+ font.weight: Font.Light
+ font.pixelSize: 14
+ font.family: Constants.titilliumWeb_regular
+ renderType: Text.NativeRendering
+ visible: projectModel.communityVersion
+ }
}
}