diff options
| author | Cristián Maureira-Fredes <Cristian.Maureira-Fredes@qt.io> | 2025-08-01 12:36:41 +0200 |
|---|---|---|
| committer | Cristián Maureira-Fredes <Cristian.Maureira-Fredes@qt.io> | 2025-08-07 17:46:16 +0200 |
| commit | a947462603bf3400c8c3560ff9c9e2f3b08ea9f3 (patch) | |
| tree | 10090a4a6b8d2efd27667a6470c000ae91945543 /examples/tutorials/drumpad/final_project/Python | |
| parent | 68be44a7b322f1489527c794e559f7a892ae5c86 (diff) | |
doc: move sounds to qtds tutorial
In order to enable the deployment tool,
we need to have the Sounds in the same directory.
Ammends efd8944b263a099e901ab588bc2d9357554f6ead
Change-Id: Idd89ba3b1624f24ed2c36d45af3d09802eb9b22d
Reviewed-by: Shyamnath Premnadh <Shyamnath.Premnadh@qt.io>
Diffstat (limited to 'examples/tutorials/drumpad/final_project/Python')
| -rw-r--r-- | examples/tutorials/drumpad/final_project/Python/audio/audio_files_model.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tutorials/drumpad/final_project/Python/audio/audio_files_model.py b/examples/tutorials/drumpad/final_project/Python/audio/audio_files_model.py index bdf7cd61e..b92bc2473 100644 --- a/examples/tutorials/drumpad/final_project/Python/audio/audio_files_model.py +++ b/examples/tutorials/drumpad/final_project/Python/audio/audio_files_model.py @@ -26,4 +26,4 @@ class AudioFilesModel(QObject): audio_files.append(resource.split(resource_prefix)[-1]) return audio_files - return list(p.name for p in Path(project_root / ".." / "Sounds").glob("*.wav")) + return list(p.name for p in Path(project_root / "Sounds").glob("*.wav")) |
