From 4d5a6e0ddf563117046ff6941e3cd99f0e9b3a9b Mon Sep 17 00:00:00 2001
From: Alezia Kurdis <60075796+AleziaKurdis@users.noreply.github.com>
Date: Sun, 27 Oct 2024 21:33:29 -0400
Subject: [PATCH] Add Paste url Button for this new qml too

Add Paste url Button for this new qml too
---
 scripts/system/create/qml/NewSoundDialog.qml | 21 +++++++++++++++++---
 1 file changed, 18 insertions(+), 3 deletions(-)

diff --git a/scripts/system/create/qml/NewSoundDialog.qml b/scripts/system/create/qml/NewSoundDialog.qml
index 870e8bb41d..f43a2707ac 100644
--- a/scripts/system/create/qml/NewSoundDialog.qml
+++ b/scripts/system/create/qml/NewSoundDialog.qml
@@ -2,7 +2,7 @@
 //  NewSoundDialog.qml
 //  qml/hifi
 //
-//  Created by HifiExperiments on 4/7/24
+//  Created by HifiExperiments on April 7th, 2024
 //  Copyright 2024 Overte e.V.
 //
 //  Distributed under the Apache License, Version 2.0.
@@ -53,17 +53,32 @@ Rectangle {
 
         Text {
             id: text1
-            text: qsTr("Sound URL")
+            text: qsTr("Sound URL <i></i>&nbsp;&nbsp;&nbsp;")
             color: "#ffffff"
             font.pixelSize: 12
         }
 
+        Button {
+            id: pasteBtn
+            text: "Paste"
+            font.pixelSize: 11
+            height: 16
+            width: 40
+            radius: 4
+            anchors.top: text1.top
+            anchors.left: text1.right
+            anchors.bottom: text1.bottom
+            onClicked: {
+                soundURL.paste()
+            }
+        }
+
         TextInput {
             id: soundURL
             height: 20
             text: qsTr("")
             color: "white"
-            anchors.top: text1.bottom
+            anchors.top: pasteBtn.bottom
             anchors.topMargin: 5
             anchors.left: parent.left
             anchors.leftMargin: 0