mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-24 10:27:10 +02:00
16 lines
220 B
QML
Executable File
16 lines
220 B
QML
Executable File
import QtQuick.Controls 1.4
|
|
|
|
TreeView {
|
|
TableViewColumn {
|
|
title: "Name"
|
|
role: "fileName"
|
|
width: 300
|
|
}
|
|
TableViewColumn {
|
|
title: "Permissions"
|
|
role: "filePermissions"
|
|
width: 100
|
|
}
|
|
model: fileSystemModel
|
|
}
|