mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-05 21:12:40 +02:00
Add Paste url Button for this new qml too
Add Paste url Button for this new qml too
This commit is contained in:
parent
8b4207d18c
commit
4d5a6e0ddf
1 changed files with 18 additions and 3 deletions
|
@ -2,7 +2,7 @@
|
||||||
// NewSoundDialog.qml
|
// NewSoundDialog.qml
|
||||||
// qml/hifi
|
// qml/hifi
|
||||||
//
|
//
|
||||||
// Created by HifiExperiments on 4/7/24
|
// Created by HifiExperiments on April 7th, 2024
|
||||||
// Copyright 2024 Overte e.V.
|
// Copyright 2024 Overte e.V.
|
||||||
//
|
//
|
||||||
// Distributed under the Apache License, Version 2.0.
|
// Distributed under the Apache License, Version 2.0.
|
||||||
|
@ -53,17 +53,32 @@ Rectangle {
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
id: text1
|
id: text1
|
||||||
text: qsTr("Sound URL")
|
text: qsTr("Sound URL <i></i> ")
|
||||||
color: "#ffffff"
|
color: "#ffffff"
|
||||||
font.pixelSize: 12
|
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 {
|
TextInput {
|
||||||
id: soundURL
|
id: soundURL
|
||||||
height: 20
|
height: 20
|
||||||
text: qsTr("")
|
text: qsTr("")
|
||||||
color: "white"
|
color: "white"
|
||||||
anchors.top: text1.bottom
|
anchors.top: pasteBtn.bottom
|
||||||
anchors.topMargin: 5
|
anchors.topMargin: 5
|
||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
anchors.leftMargin: 0
|
anchors.leftMargin: 0
|
||||||
|
|
Loading…
Reference in a new issue