aboutsummaryrefslogtreecommitdiffstats
path: root/tests/manual
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual')
-rw-r--r--tests/manual/quickcontrols2/testbench/controls/DelayButton.qml5
-rw-r--r--tests/manual/quickdialogs/dialogs/FileDialogPage.qml2
2 files changed, 3 insertions, 4 deletions
diff --git a/tests/manual/quickcontrols2/testbench/controls/DelayButton.qml b/tests/manual/quickcontrols2/testbench/controls/DelayButton.qml
index c0f6faa29b..914c1c5632 100644
--- a/tests/manual/quickcontrols2/testbench/controls/DelayButton.qml
+++ b/tests/manual/quickcontrols2/testbench/controls/DelayButton.qml
@@ -63,10 +63,9 @@ QtObject {
property Component component: Component {
DelayButton {
text: "DelayButton"
-// enabled: !is("disabled")
+ enabled: !is("disabled")
// Only set it if it's pressed, or the non-pressed examples will have no press effects
-// down: is("pressed") ? true : undefined
- onDownChanged: print("down", down)
+ down: is("pressed") ? true : undefined
}
}
}
diff --git a/tests/manual/quickdialogs/dialogs/FileDialogPage.qml b/tests/manual/quickdialogs/dialogs/FileDialogPage.qml
index 211725b8ce..d0eae9b07b 100644
--- a/tests/manual/quickdialogs/dialogs/FileDialogPage.qml
+++ b/tests/manual/quickdialogs/dialogs/FileDialogPage.qml
@@ -273,7 +273,6 @@ ColumnLayout {
TextField {
id: selectedFileTextField
text: fileDialog.selectedFile
- readOnly: true
selectByMouse: true
Layout.fillWidth: true
@@ -352,6 +351,7 @@ ColumnLayout {
| hideNameFilterDetailsCheckBox.fileOption
nameFilters: nameFiltersTextField.text.split(",")
rejectLabel: rejectLabelTextField.text
+ selectedFile: selectedFileTextField.text
}
}
}