mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 06:44:06 +02:00
support deleted scenario
This commit is contained in:
parent
b78f00342e
commit
387ff680d5
1 changed files with 5 additions and 1 deletions
|
@ -73,7 +73,11 @@ Rectangle {
|
|||
}
|
||||
|
||||
onTextChanged : {
|
||||
button1.enabled = true;
|
||||
if (modelURL.text.length === 0){
|
||||
button1.enabled = false;
|
||||
} else {
|
||||
button1.enabled = true;
|
||||
}
|
||||
}
|
||||
|
||||
MouseArea {
|
||||
|
|
Loading…
Reference in a new issue