filemanager/qml/GlobalSettings.qml

15 lines
381 B
QML
Raw Normal View History

2021-03-29 01:51:34 -07:00
import QtQuick 2.12
2021-03-16 00:02:20 -07:00
import Qt.labs.settings 1.0
Settings {
2021-04-04 22:01:49 -07:00
property int viewMethod: 1 // controls display mode: list or grid
2021-03-16 00:02:20 -07:00
property bool showHidden: false
2021-03-29 01:51:34 -07:00
property int width: 900
property int height: 580
2021-03-30 09:20:52 -07:00
property int desktopIconSize: 72
property int maximumIconSize: 256
2021-03-30 09:20:52 -07:00
property int minimumIconSize: 72
2021-03-29 07:53:21 -07:00
2021-03-30 09:20:52 -07:00
property int gridIconSize: 72
2021-03-16 00:02:20 -07:00
}