Files
neochat/src/qml/OpenFileDialog.qml
Tobias Fella 84cad630cd Refactor and fix ChatBox layouting
BUG: 474616
2023-11-09 20:19:09 +00:00

15 lines
289 B
QML

// SPDX-FileCopyrightText: 2023 Tobias Fella <tobias.fella@kde.org>
// SPDX-License-Identifier: GPL-2.0-or-later
import QtQuick
import QtQuick.Dialogs
FileDialog {
id: root
signal chosen(string path)
title: i18n("Select a File")
onAccepted: root.chosen(selectedFile)
}