2021-03-16 00:02:20 -07:00
|
|
|
import QtQuick 2.0
|
|
|
|
import Qt.labs.settings 1.0
|
|
|
|
|
|
|
|
Settings {
|
|
|
|
property int viewMethod: 0 // 0 = Grid, 1 = List
|
|
|
|
property bool showHidden: false
|
|
|
|
property int width: 1080
|
|
|
|
property int height: 645
|
2021-03-16 08:19:36 -07:00
|
|
|
property int desktopIconSize: 128
|
|
|
|
property int maximumIconSize: 256
|
|
|
|
property int minimumIconSize: 128
|
2021-03-16 00:02:20 -07:00
|
|
|
}
|