filemanager/qml/GlobalSettings.qml

15 lines
336 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-03-29 01:51:34 -07:00
property int viewMethod: 0
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
property int desktopIconSize: 128
property int maximumIconSize: 256
property int minimumIconSize: 128
2021-03-29 07:53:21 -07:00
property int gridIconSize: 128
2021-03-16 00:02:20 -07:00
}