Warning, /multimedia/kasts/src/qml/Settings/StorageDirDialogFlatpak.qml is written in an unsupported language. File is not indexed.

0001 /**
0002  * SPDX-FileCopyrightText: 2023 Bart De Vries <bart@mogwai.be>
0003  *
0004  * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005  */
0006 
0007 import QtQuick.Dialogs
0008 
0009 import org.kde.kasts
0010 
0011 FileDialog {
0012     selectFolder: true
0013     folder: "file://" + StorageManager.storagePath
0014     onAccepted: {
0015         StorageManager.setStoragePath(fileUrl);
0016     }
0017 }