From d0de5154fed211a7b7c3aef157345f99efed2f9e Mon Sep 17 00:00:00 2001
From: Alezia Kurdis <60075796+AleziaKurdis@users.noreply.github.com>
Date: Sun, 18 Oct 2020 23:22:17 -0400
Subject: [PATCH] Fix for Issue #711

Fix for Issue:
#711 Add error dialogue if an unsupported filetype is added as a model URL in the create app.

As agreed, the label "Model URL" will indicate now: "Model URL (.fbx, .fst, .glb, .gltf, .obj, .gz)"

The list of file type has been set in Italic.
And the label for Material dialog has been adjust to have the same standard "(Optional)" is also in italic.
---
 scripts/system/create/qml/NewMaterialDialog.qml | 2 +-
 scripts/system/create/qml/NewModelDialog.qml    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/system/create/qml/NewMaterialDialog.qml b/scripts/system/create/qml/NewMaterialDialog.qml
index 3cc619e176..e08ca868b6 100644
--- a/scripts/system/create/qml/NewMaterialDialog.qml
+++ b/scripts/system/create/qml/NewMaterialDialog.qml
@@ -55,7 +55,7 @@ Rectangle {
 
         Text {
             id: text1
-            text: qsTr("Material URL (Optional)")
+            text: qsTr("Material URL <i>(Optional)</i>")
             color: "#ffffff"
             font.pixelSize: 12
         }
diff --git a/scripts/system/create/qml/NewModelDialog.qml b/scripts/system/create/qml/NewModelDialog.qml
index dd4ef3c8ad..758706a79b 100644
--- a/scripts/system/create/qml/NewModelDialog.qml
+++ b/scripts/system/create/qml/NewModelDialog.qml
@@ -55,7 +55,7 @@ Rectangle {
 
         Text {
             id: text1
-            text: qsTr("Model URL")
+            text: qsTr("Model URL <i>(.fbx, .fst, .glb, .gltf, .obj, .gz)</i>")
             color: "#ffffff"
             font.pixelSize: 12
         }